-Removed no longer needed files -Created ipk for quecmanager -Thank you @dr-dolomite for your hard work on this! Co-Authored-By: Russel Yasol <73575327+dr-dolomite@users.noreply.github.com>
20 lines
378 B
SCSS
20 lines
378 B
SCSS
@use "../utilities/extends";
|
|
@use "../utilities/initial-variables" as iv;
|
|
|
|
.#{iv.$helpers-prefix}radiusless {
|
|
border-radius: 0 !important;
|
|
}
|
|
|
|
.#{iv.$helpers-prefix}shadowless {
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.#{iv.$helpers-prefix}clickable {
|
|
cursor: pointer !important;
|
|
pointer-events: all !important;
|
|
}
|
|
|
|
.#{iv.$helpers-prefix}unselectable {
|
|
@extend %unselectable;
|
|
}
|