add icons, fix news linking
This commit is contained in:
@@ -9,12 +9,6 @@
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
// @media (min-width: $breakpoint-md) {
|
||||
// .news-list-item {
|
||||
// grid-column: span 2;
|
||||
// }
|
||||
// }
|
||||
|
||||
@media (min-width: $breakpoint-lg) {
|
||||
.news-list-item {
|
||||
grid-column: span 2;
|
||||
@@ -75,10 +69,6 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.previous a, .next a, .first a, .last a {
|
||||
// these are also styled as circles
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -128,3 +118,26 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
/* Show header button only on desktop */
|
||||
.header-btn {
|
||||
display: none;
|
||||
@media (min-width: $breakpoint-lg) {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
/* Show mobile button only below desktop breakpoint */
|
||||
.mobile-btn {
|
||||
display: block;
|
||||
margin-top: 1rem;
|
||||
@media (min-width: $breakpoint-lg) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user