Fix bd-link

This commit is contained in:
Jeremy Thomas 2018-10-02 06:39:55 +01:00
parent 785b3a0635
commit c237a15188
3 changed files with 20 additions and 1 deletions

View File

@ -95,6 +95,14 @@
font-size: 0.75em
opacity: 0.5
+mobile
.bd-links
margin-left: -1.5rem
margin-right: -1.5rem
.bd-link
border-radius: 0
padding-right: 1.5rem
+desktop
.bd-links
display: flex

View File

@ -12064,6 +12064,17 @@ svg {
opacity: 0.5;
}
@media screen and (max-width: 768px) {
.bd-links {
margin-left: -1.5rem;
margin-right: -1.5rem;
}
.bd-link {
border-radius: 0;
padding-right: 1.5rem;
}
}
@media screen and (min-width: 1088px) {
.bd-links {
display: flex;

File diff suppressed because one or more lines are too long