blog/src/styles/tagList.scss
Michael Zhang d70327ffb9
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
tags on home page
2023-10-24 14:00:40 -05:00

28 lines
414 B
SCSS

.tags {
display: flex;
gap: 6px;
// margin-bottom: 6px;
flex-wrap: wrap;
.tag {
font-size: 0.75rem;
background-color: var(--tag-color);
color: var(--tag-text-color);
padding: 2px 7px;
border-radius: 4px;
&.draft {
background-color: orange;
color: black;
}
.text {
text-decoration: none;
}
&:hover {
text-decoration: none;
}
}
}