24 lines
455 B
SCSS
24 lines
455 B
SCSS
|
|
@use '../shared/colors';
|
||
|
|
|
||
|
|
.posts {
|
||
|
|
.list {
|
||
|
|
ul {
|
||
|
|
list-style: none;
|
||
|
|
padding: 0;
|
||
|
|
|
||
|
|
li {
|
||
|
|
padding: 1rem 0;
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: colors.$primaryWhite;
|
||
|
|
text-decoration: none;
|
||
|
|
display: block;
|
||
|
|
|
||
|
|
.post-title {
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|