abdullahtarawneh.com/assets/scss/layouts/partials/h-entry.scss
2024-06-02 00:04:04 -05:00

24 lines
378 B
SCSS

.h-entry {
.tags {
padding-inline-start: 0;
list-style: none;
display: flex;
flex-flow: row wrap;
gap: 1rem;
li {
display: inline;
}
a {
background: var(--color-highlight-weak);
text-decoration: none;
font-family: monospace;
padding: 0.25rem;
&:before {
content: '#';
}
&:hover {
background: var(--color-highlight);
}
}
}
}