1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00

great new editor!

This commit is contained in:
muerwre 2019-08-02 04:56:04 +07:00
parent 819e988a2e
commit 712a3cbb77
4 changed files with 103 additions and 15 deletions

View file

@ -11,12 +11,14 @@
display: flex;
flex-direction: column;
justify-content: center;
background: darken($content_bg, 4%);
}
.editor {
background: $content_bg;
min-height: 200px;
min-width: 50vw;
background: darken($content_bg, 4%);
border-radius: $radius;
display: flex;
align-items: stretch;
@ -27,4 +29,50 @@
}
.panel {
}
.features {
display: flex;
}
.feature_add_btn {
width: 40px;
height: 40px;
border-radius: 24px;
background: $red_gradient;
display: flex;
align-items: center;
justify-content: center;
}
.feature {
background: lighten($content_bg, 4%);
padding: $gap $gap $gap 20px;
border-radius: 24px;
font: $font_14_semibold;
height: 40px;
box-sizing: border-box;
}
.feature_cell {
background: lighten($content_bg, 4%);
display: flex;
align-items: center;
justify-content: center;
height: 40px;
width: 40px;
box-sizing: border-box;
border-radius: $radius;
}
.uploads {
flex: 1;
padding-bottom: 0;
}
.cell {
background: lighten($content_bg, 6%);
border-radius: $radius;
padding-bottom: 100%;
}