mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-28 05:57:58 +01:00
91 lines
1.1 KiB
SCSS
91 lines
1.1 KiB
SCSS
|
.flex {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.flex__row {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
}
|
||
|
|
||
|
.flex__column {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.flex__row--centered {
|
||
|
@extend .flex__row;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.flex__column--centered {
|
||
|
@extend .flex__column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.flex--centered {
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.flex--center-distributed {
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.flex--no-wrap {
|
||
|
flex-wrap: nowrap;
|
||
|
}
|
||
|
|
||
|
.flex--wrap {
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
.flex__right {
|
||
|
flex: 1 1 auto;
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
.flex__grow {
|
||
|
flex: 1 0 0;
|
||
|
}
|
||
|
|
||
|
.flex__shrink {
|
||
|
flex: 0 1 auto;
|
||
|
}
|
||
|
|
||
|
.flex__fixed {
|
||
|
flex: 0 0 auto;
|
||
|
}
|
||
|
|
||
|
.flex--column {
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.flex--spaced-out {
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.flex--start-bunched {
|
||
|
justify-content: flex-start;
|
||
|
}
|
||
|
|
||
|
.flex--end-bunched {
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
|
||
|
.flex__spacer {
|
||
|
flex: 1 0 auto;
|
||
|
}
|
||
|
|
||
|
@include if-desktop {
|
||
|
.flex--maybe-wrap {
|
||
|
flex-wrap: nowrap;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@include if-mobile {
|
||
|
.flex--maybe-wrap {
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
}
|