mirror of
https://github.com/codeninjasuk/showcase.git
synced 2024-12-11 00:21:10 -05:00
12 lines
193 B
SCSS
12 lines
193 B
SCSS
|
// stylelint-disable declaration-no-important
|
||
|
|
||
|
@mixin float-left {
|
||
|
float: left !important;
|
||
|
}
|
||
|
@mixin float-right {
|
||
|
float: right !important;
|
||
|
}
|
||
|
@mixin float-none {
|
||
|
float: none !important;
|
||
|
}
|