initial server implementation

This commit is contained in:
2026-05-31 17:35:41 -05:00
parent 686f54af64
commit 16cb057670
106 changed files with 102494 additions and 4 deletions
+28
View File
@@ -0,0 +1,28 @@
@use "../utilities/initial-variables" as iv;
@use "../utilities/mixins" as mx;
.#{iv.$class-prefix}#{iv.$helpers-prefix}clearfix {
@include mx.clearfix;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}float-left,
.#{iv.$class-prefix}#{iv.$helpers-prefix}pulled-left {
float: left !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}float-right,
.#{iv.$class-prefix}#{iv.$helpers-prefix}pulled-right {
float: right !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}float-none {
float: none !important;
}
$clears: both left none right;
@each $clear in $clears {
.#{iv.$class-prefix}#{iv.$helpers-prefix}clear-#{$clear} {
clear: $clear !important;
}
}