Added tag validate button

This commit is contained in:
Djeex
2025-08-22 11:54:29 +02:00
parent 8a04fe5aa6
commit a6b63c2d2b
3 changed files with 46 additions and 7 deletions

View File

@ -165,7 +165,6 @@ h2 {
/* --- Tags --- */
.tag-input {
display: flex;
flex-wrap: wrap-reverse;
align-content: flex-start;
gap: 4px;
padding: 4px;
@ -889,3 +888,19 @@ justify-content: center;
display: flex;
}
.photo button.validate-tag-btn {
border-radius: 30px;
border: none;
background: #049b3d;
color: #fff;
font-size: 10px;
cursor: pointer;
margin-left: 4px;
transition: all ease 0.2s;
width: 35px;
border: 1px solid #585858;
}
.photo button.validate-tag-btn:hover {
background: #02cb4e;
}