blog/src/styles/tagList.scss

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;
}
}
}