Files
standardnotes-app-web/app/assets/stylesheets/_columns.scss
2022-04-13 22:02:34 +05:30

24 lines
281 B
SCSS

.app-column-container {
display: flex;
flex-direction: row;
}
.app-column-first {
width: 180px;
flex-shrink: 0.2;
}
.app-column-second {
width: 350px;
flex-shrink: 0.5;
}
.app-column-third {
flex-grow: 1;
flex-shrink: 0.3;
}
.app-column {
overflow: hidden;
}