You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/web/src/less/menu-btns-popup.less

24 lines
431 B
Plaintext

4 years ago
@import "./mixin.less";
.menu-btns-popup {
.flex(column, flex-start, flex-start);
@apply absolute mt-1 ml-24 p-1 w-44 rounded-lg z-10 shadow bg-white;
4 years ago
&:hover {
display: flex;
}
> .btn {
.flex(row, flex-start, center);
@apply w-full py-2 px-3 text-sm rounded text-left;
4 years ago
> .icon {
@apply block w-6 text-center mr-2 text-sm;
4 years ago
}
&:hover {
background-color: @bg-whitegray;
}
}
}