1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

editor scrollbars

This commit is contained in:
muerwre 2019-07-29 18:51:10 +07:00
parent e687a3f5f3
commit 14c5f67d49
15 changed files with 349 additions and 18 deletions

View file

@ -3,6 +3,7 @@
align-items: stretch;
justify-content: center;
display: flex;
background: $editor_bg;
}
.group {
@ -13,10 +14,35 @@
}
.panel {
background: red;
background: $editor_panel_bg;
flex: 0 0 33%;
border-radius: 0 $radius $radius 0;
padding: $gap;
box-sizing: border-box;
@include outer_shadow();
}
.editor {
flex: 1;
display: flex;
align-items: stretch;
flex-direction: column;
}
.editor_panel {
padding: $gap;
}
.editor_image_panel {
flex: 1;
}
.editor_image_container {
flex: 1;
}
.editor_image {
background: lighten($main_bg_color, 20%);
padding-bottom: 100%;
border-radius: $radius;
}