mirror of
https://github.com/codeninjasuk/showcase.git
synced 2024-11-28 18:35:44 -05:00
11 lines
193 B
SCSS
11 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;
|
|
}
|