Add styling for generic flex spread

This commit is contained in:
Daniel_I_Am 2022-06-12 13:36:06 +02:00
parent 08f34e97ad
commit 363421a104
2 changed files with 9 additions and 0 deletions

8
assets/sass/_flex.scss Normal file
View File

@ -0,0 +1,8 @@
.flex-spread {
display: flex;
justify-content: space-between;
}
.flex-direction-column {
flex-direction: column;
}

View File

@ -12,6 +12,7 @@
@import "layout"; @import "layout";
@import "header"; @import "header";
@import "footer"; @import "footer";
@import "flex";
// Component-specific styling // Component-specific styling
@import "compact-list"; @import "compact-list";