Move headroom to bundle

This commit is contained in:
MrTimscampi 2020-04-24 18:03:55 +02:00
parent ba57841ab0
commit bd092a5400
9 changed files with 34 additions and 385 deletions

View file

@ -96,3 +96,16 @@ div[data-role=page] {
margin-right: auto;
width: 85%;
}
.headroom {
will-change: transform;
transition: transform 200ms linear;
}
.headroom--pinned {
transform: translateY(0%);
}
.headroom--unpinned {
transform: translateY(-100%);
}