1
0
Fork 0
mirror of https://github.com/kidoman/embd synced 2025-07-04 12:27:45 +02:00

initial commit

This commit is contained in:
Karan Misra 2014-03-31 06:33:08 +05:30
commit b3bad4e383
114 changed files with 14939 additions and 0 deletions

View 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;
}
}