Files
bulma/sass/helpers/float.scss

29 lines
674 B
SCSS
Raw Normal View History

2024-03-21 16:11:54 +00:00
@use "../utilities/initial-variables" as iv;
@use "../utilities/mixins" as mx;
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}clearfix {
2024-03-21 16:11:54 +00:00
@include mx.clearfix;
}
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}float-left,
.#{iv.$class-prefix}#{iv.$helpers-prefix}pulled-left {
2024-03-21 16:11:54 +00:00
float: left !important;
}
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}float-right,
.#{iv.$class-prefix}#{iv.$helpers-prefix}pulled-right {
2024-03-21 16:11:54 +00:00
float: right !important;
}
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}float-none {
2024-03-21 16:11:54 +00:00
float: none !important;
}
$clears: both left none right;
@each $clear in $clears {
2024-12-27 21:25:24 +01:00
.#{iv.$class-prefix}#{iv.$helpers-prefix}clear-#{$clear} {
2024-03-21 16:11:54 +00:00
clear: $clear !important;
}
}