mirror of
https://github.com/kidoman/embd
synced 2025-07-04 12:27:45 +02:00
initial commit
This commit is contained in:
commit
b3bad4e383
114 changed files with 14939 additions and 0 deletions
21
bower_components/gumby/sass/functions/_fixed.scss
vendored
Normal file
21
bower_components/gumby/sass/functions/_fixed.scss
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
@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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue