2025-02-10 05:54:41 +00:00
|
|
|
@use 'sass:list';
|
2025-01-20 08:09:54 +00:00
|
|
|
|
|
|
|
.flex {
|
|
|
|
&-row {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
&-column {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@each $type, $colors in $color-types {
|
|
|
|
.text-#{$type} {
|
|
|
|
color: list.nth($colors, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-left {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|