28 lines
370 B
SCSS
28 lines
370 B
SCSS
// Float Classes
|
|
.float-left {
|
|
float: left !important;
|
|
}
|
|
|
|
.float-right {
|
|
float: right !important;
|
|
}
|
|
|
|
// Visibility (additional responsive based classes available in the visibility particle)
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
// Clearfix
|
|
.clearfix {
|
|
@include clearfix;
|
|
}
|
|
|
|
// Center
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
// Full Height Section
|
|
.full-height {
|
|
min-height: 100vh;
|
|
}
|