feat: tag selector popup

This commit is contained in:
email
2022-01-10 22:48:53 +08:00
parent 48eb618959
commit 9a6e2d10ce
7 changed files with 145 additions and 17 deletions

View File

@ -27,6 +27,31 @@
height: auto;
background-color: white;
}
> .tag-list {
.flex(column, flex-start, flex-start);
position: absolute;
z-index: 10;
background-color: rgba(30, 30, 30, 0.9);
padding: 2px;
border-radius: 4px;
width: 128px;
max-height: 200px;
overflow: auto;
> span {
width: 100%;
padding: 2px 6px;
color: white;
cursor: pointer;
border-radius: 4px;
font-size: 13px;
&:hover {
background-color: #505050;
}
}
}
}
@media only screen and (max-width: 875px) {