BetterDiscordApp-v2/client/src/styles/partials/layouts.scss

24 lines
230 B
SCSS
Raw Normal View History

.bd-flex {
display: flex;
}
.bd-flex-row {
flex-direction: row;
}
.bd-flex-col {
flex-direction: column;
}
.bd-flex-grow {
flex-grow: 1;
}
.bd-flex-spacer {
flex-grow: 1;
}
2018-02-04 13:00:08 +01:00
.bd-hide {
display: none;
}