Merge pull request #6491 from AugierLe42e/flash-messages-use-BS-variable
[Quickfix] Use BS variable $navbar-height for flash messages animation
This commit is contained in:
commit
92802a7949
2 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
@import 'color-variables';
|
@import 'color-variables';
|
||||||
|
@import 'bootstrap-variables';
|
||||||
@import 'animations';
|
@import 'animations';
|
||||||
|
|
||||||
/** ADMIN STYlES **/
|
/** ADMIN STYlES **/
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
// flash message animations - header height is about 50px
|
// flash message animations - header height is about 50px
|
||||||
@keyframes expose {
|
@keyframes expose {
|
||||||
0% { top: -100px; }
|
0% { top: -100px; }
|
||||||
12% { top: 50px; }
|
12% { top: $navbar-height; }
|
||||||
88% { top: 50px; }
|
88% { top: $navbar-height; }
|
||||||
100% { top: -100px; }
|
100% { top: -100px; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue