liebling/src/sass/components/header/_tags.scss

36 lines
456 B
SCSS
Raw Normal View History

2019-05-21 19:50:29 +00:00
.m-tags {
&.in-post {
padding-top: 25px;
ul {
padding: 0;
list-style-type: none;
}
a {
text-decoration: none;
}
}
2019-05-21 19:50:29 +00:00
ul {
display: flex;
flex-wrap: wrap;
2020-07-02 20:23:00 +00:00
}
2019-05-21 19:50:29 +00:00
2020-07-02 20:23:00 +00:00
li {
letter-spacing: 0.2px;
font-size: 0.875rem;
font-weight: 600;
margin-right: 30px;
margin-bottom: 10px !important;
2019-05-21 19:50:29 +00:00
2020-07-02 20:23:00 +00:00
&:last-of-type {
margin-right: 0;
}
2019-05-21 19:50:29 +00:00
2020-07-02 20:23:00 +00:00
a {
color: var(--link-color);
2019-05-21 19:50:29 +00:00
}
}
}