Files
bulma/sass/helpers/other.scss
Jeremy Thomas 785418143e Build 1.0.3
2024-12-27 21:25:24 +01:00

20 lines
454 B
SCSS

@use "../utilities/extends";
@use "../utilities/initial-variables" as iv;
.#{iv.$class-prefix}#{iv.$helpers-prefix}radiusless {
border-radius: 0 !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}shadowless {
box-shadow: none !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}clickable {
cursor: pointer !important;
pointer-events: all !important;
}
.#{iv.$class-prefix}#{iv.$helpers-prefix}unselectable {
@extend %unselectable;
}