add 'full-width' class on Flex-Layout

This commit is contained in:
2021-09-08 11:40:21 +09:00
parent 898dcbc313
commit c7cffc1fb8
11 changed files with 84 additions and 27 deletions

24
src/_utils.scss Normal file
View File

@@ -0,0 +1,24 @@
.text-left {
text-align: left;
text-align: start;
}
.text-right {
text-align: right;
text-align: end;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.hidden {
display: none !important;
}
@for $i from 1 through 12 {
.shadow-#{$i} {
@include shadow($i);
}
}