Files
SecureNotes/src/components/context.scss
2019-06-03 18:14:19 +02:00

18 lines
364 B
SCSS

.context-menu {
position: fixed;
z-index: 10;
display: flex;
flex-direction: column;
border: 1px var(--border-color) solid;
>button {
margin: 0;
display: block;
background-color: rgb(224, 224, 224);
color: black;
}
>*:not(:last-child) {
border-bottom: 1px var(--border-color) solid;
}
}