1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/src/components/editors/EditorPanel/styles.module.scss
2020-11-29 15:43:30 +07:00

26 lines
359 B
SCSS

@import "src/styles/variables";
.panel {
height: 72px;
position: absolute;
left: 0;
width: 100%;
bottom: 100%;
box-sizing: border-box;
padding: $gap;
z-index: 10;
display: flex;
flex-direction: row;
& > * {
margin: 0 $gap / 2;
&:first-child {
margin-left: 0;
}
&:last-child {
margin-right: 0;
}
}
}