philomena/assets/css/elements/flex.css

105 lines
1.2 KiB
CSS
Raw Normal View History

2023-11-23 17:07:49 +01:00
.flex {
display: flex;
}
.flex__row {
display: flex;
flex-direction: row;
}
.flex__column {
display: flex;
flex-direction: column;
}
.flex__row--centered {
display: flex;
flex-direction: row;
2023-11-23 17:07:49 +01:00
align-items: center;
justify-content: center;
}
.flex__column--centered {
display: flex;
flex-direction: column;
2023-11-23 17:07:49 +01:00
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;
}
2024-05-07 19:33:56 +02:00
.flex--small-gap {
gap: var(--padding-small);
}
.flex--normal-gap {
gap: var(--padding-normal);
}
.flex--large-gap {
gap: var(--padding-large);
}
2023-11-23 17:07:49 +01:00
.flex--start-bunched {
justify-content: flex-start;
}
.flex--end-bunched {
justify-content: flex-end;
}
.flex__spacer {
flex: 1 0 auto;
}
@mixin if-desktop {
2023-11-23 17:07:49 +01:00
.flex--maybe-wrap {
flex-wrap: nowrap;
}
}
@mixin if-mobile {
2023-11-23 17:07:49 +01:00
.flex--maybe-wrap {
flex-wrap: wrap;
}
}