Display tags in posts (#11)

This commit is contained in:
video-prize-ranch
2022-02-21 12:14:00 -05:00
parent 003b61a69d
commit 36793004f8
5 changed files with 48 additions and 2 deletions

View File

@@ -36,4 +36,24 @@ img {
flex-direction: row;
align-items: center;
gap: 5px;
}
.tags {
display: flex;
gap: 10px;
flex-flow: wrap;
}
.tag {
border-radius: 10px;
padding: 7px;
background-color: rgba(0, 0, 0, 0.15);
background-blend-mode: multiply;
min-width: 110px;
}
.tag__display {
font-weight: 700;
color: #fff;
text-align: center;
}