Convert sass files to scss files

This commit is contained in:
Jeremy Thomas
2022-11-23 17:44:02 +00:00
parent bd2e065ab7
commit dafc032ff0
140 changed files with 8331 additions and 5619 deletions

36
sass/elements/other.scss Normal file
View File

@@ -0,0 +1,36 @@
@import "../utilities/mixins";
.block {
@extend %block;
}
.delete {
@extend %delete;
}
.heading {
display: block;
font-size: 11px;
letter-spacing: 1px;
margin-bottom: 5px;
text-transform: uppercase;
}
.loader {
@extend %loader;
}
.number {
align-items: center;
background-color: $background;
border-radius: $radius-rounded;
display: inline-flex;
font-size: $size-medium;
height: 2em;
justify-content: center;
margin-right: 1.5rem;
min-width: 2.5em;
padding: 0.25rem 0.5rem;
text-align: center;
vertical-align: top;
}