2020-07-15 23:05:36 +02:00
|
|
|
.posts {
|
|
|
|
.wrapper:first-child {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-filter {
|
|
|
|
align-self: flex-end;
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
list-style: none;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2020-07-17 16:17:11 +02:00
|
|
|
|
|
|
|
+ li {
|
|
|
|
margin-left: 1.5rem;
|
|
|
|
}
|
2020-07-15 23:05:36 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: 600;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active a {
|
|
|
|
text-decoration: underline;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-17 16:17:11 +02:00
|
|
|
|
|
|
|
@media (max-width: 575.98px) {
|
|
|
|
.posts {
|
|
|
|
h1 {
|
|
|
|
font-size: 1.75rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-filter {
|
|
|
|
align-self: flex-start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|