1
0
Fork 0
mirror of https://github.com/kidoman/embd synced 2025-07-04 04:17:41 +02:00
embd/bower_components/gumby/sass/functions/_fixed.scss
2014-03-31 06:33:08 +05:30

21 lines
426 B
SCSS

@mixin fixed($removal-breakpoint) {
.fixed {
position: fixed;
&.pinned {
position: absolute;
}
@if $removal-breakpoint != false {
@include respond($removal-breakpoint) {
position: relative !important;
top: auto !important;
left: auto !important;
}
}
}
.unfixed {
position: relative !important;
top: auto !important;
left: auto !important;
}
}