Use BS variable -height for flash messages animation

This commit is contained in:
augier 2015-10-11 12:17:56 +02:00 committed by Augier
parent bce7157b86
commit d6391afb36
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; }
}