ensure header background is pullable when collapsing is disabled

This commit is contained in:
Marty Alcala 2016-11-14 19:13:14 -05:00
commit 26814461f1
2 changed files with 19 additions and 4 deletions

View file

@ -141,12 +141,22 @@
.amount-bg {
content: '';
bottom: 0;
top: 0;
left: 0;
position: absolute;
width: 100%;
height: 200px;
transform: translateY(100px);
height: 500px;
transform: translateY(-499px);
&.collapsible {
top: initial;
bottom: 0;
left: 0;
position: absolute;
width: 100%;
height: 200px;
transform: translateY(100px);
}
}
}
.amount {