bulma/sass/helpers/other.scss
2022-11-23 21:20:16 +00:00

19 lines
263 B
SCSS

@import "../utilities/mixins";
.is-radiusless {
border-radius: 0 !important;
}
.is-shadowless {
box-shadow: none !important;
}
.is-clickable {
cursor: pointer !important;
pointer-events: all !important;
}
.is-unselectable {
@extend %unselectable;
}