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:
Steffen van Bergerem 2015-11-22 18:25:06 +01:00
commit 92802a7949
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,5 @@
@import 'color-variables';
@import 'bootstrap-variables';
@import 'animations';
/** ADMIN STYlES **/

View file

@ -1,8 +1,8 @@
// flash message animations - header height is about 50px
@keyframes expose {
0% { top: -100px; }
12% { top: 50px; }
88% { top: 50px; }
12% { top: $navbar-height; }
88% { top: $navbar-height; }
100% { top: -100px; }
}