bulma/sass/helpers/other.scss

19 lines
263 B
SCSS
Raw Normal View History

2022-11-23 17:44:02 +00:00
@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;
}