This repository has been archived on 2023-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
persona__/src/_utils.scss

25 lines
300 B
SCSS

.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);
}
}