1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/containers/examples/EditorExample/styles.scss
2019-08-01 04:01:16 +07:00

67 lines
993 B
SCSS

.wrap {
align-items: stretch;
justify-content: center;
display: flex;
background: $editor_bg;
flex: 1;
}
.group {
display: flex;
align-items: stretch !important;
justify-content: stretch;
flex: 1;
}
.panel {
background: $editor_panel_bg;
flex: 1;
//border-radius: 0 $radius $radius 0;
border-radius: $radius;
box-sizing: border-box;
display: flex;
flex-direction: column;
//@include outer_shadow();
}
.editor {
flex: 2;
display: flex;
align-items: stretch;
flex-direction: column;
}
.editor_panel {
}
.editor_image_panel {
flex: 1;
}
.editor_image_container {
flex: 1;
}
.editor_image {
background: transparentize(white, 0.95);
padding-bottom: 100%;
border-radius: $radius;
}
.feature_card {
height: 100px;
background: darken($main_bg_color, 3%);
}
.panel_main {
flex: 1;
display: flex;
}
.close_icon {
height: 24px;
width: 24px;
background: transparentize(white, 0.95);
flex: 0 0 24px;
border-radius: $radius;
}