work on colors

This commit is contained in:
Ilya Daynatovich
2016-11-14 11:01:50 +02:00
parent 9124aa2c87
commit cbc6943305
6 changed files with 23 additions and 17 deletions
+2 -2
View File
@@ -252,7 +252,7 @@ a.button>#avatar {
*/
@include keyframes(slideInExt) {
from { width: 0px; }
to { width: 200px; } // TO FIX: Make this value a percentage.
to { width: $sidebarWidth; } // TO FIX: Make this value a percentage.
}
.slideInExt {
@@ -260,7 +260,7 @@ a.button>#avatar {
}
@include keyframes(slideOutExt) {
from { width: 200px; } // TO FIX: Make this value a percentage.
from { width: $sidebarWidth; } // TO FIX: Make this value a percentage.
to { width: 0px; }
}