tag functionality

This commit is contained in:
Gavyn Ezell
2022-11-10 13:22:32 -08:00
parent 1718c7cedb
commit c168d0f902
6 changed files with 55 additions and 26 deletions

View File

@@ -47,6 +47,11 @@
row-gap: 10px;
width: 100%;
}
.tag-container {
display: flex;
flex-flow: row wrap;
}
.tag {
background-color: grey;
border-radius: 7px;
@@ -66,14 +71,14 @@
color: white;
cursor: pointer;
}
.tag:hover::before{
.tag:hover::before {
color: red;
}
.danger {
background-color: rgb(254, 171, 171);
border-color: red;
}
.hidden {
display: none;
}
.danger {
background-color: rgb(254, 171, 171);
border-color: red;
}
.hidden {
display: none;
}