13 lines
250 B
SCSS
13 lines
250 B
SCSS
|
|
@use '../shared/colors' as colors;
|
||
|
|
|
||
|
|
.category, .tag {
|
||
|
|
.posts, .photos {
|
||
|
|
ul {
|
||
|
|
list-style-type: square;
|
||
|
|
color: colors.$primaryWhite;
|
||
|
|
li {
|
||
|
|
padding: 0.5rem 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|