29 lines
438 B
SCSS
29 lines
438 B
SCSS
|
.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;
|
||
|
margin-left: 1.5rem;
|
||
|
|
||
|
a {
|
||
|
font-weight: 600;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
&.active a {
|
||
|
text-decoration: underline;
|
||
|
cursor: default;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|