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

32 lines
319 B
SCSS
Raw Normal View History

.bd-flex {
display: flex;
}
2018-08-15 04:03:56 +02:00
.bd-flexRow,
.bd-flexRow {
flex-direction: row;
}
2018-08-15 04:03:56 +02:00
.bd-flexCol,
.bd-flexCol {
flex-direction: column;
}
2018-08-15 04:03:56 +02:00
.bd-flexGrow,
.bd-flexGrow {
flex-grow: 1;
}
2018-08-15 04:03:56 +02:00
.bd-flexSpacer,
.bd-flexSpacer {
flex-grow: 1;
}
2018-02-04 13:00:08 +01:00
.bd-hide {
display: none;
}
.bd-inline {
display: inline;
}