Files
standardnotes-app-web/app/assets/stylesheets/_columns.scss
2022-01-31 12:16:18 -06:00

23 lines
280 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;
}