[Frontend] Converting tree items and labels to flex-box

open #431
In-progress;
TO-DO: need to fix mobile styles!
This commit is contained in:
Charles Hacskaylo
2015-12-15 18:17:06 -08:00
parent a98ab958c9
commit 65a1d7495d
8 changed files with 236 additions and 188 deletions

View File

@@ -26,8 +26,8 @@
@mixin spinner($b: 5px, $c: $colorAlt1) {
@include keyframes(rotateCentered) {
0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
100% { transform: translateX(-50%) translateY(-50%) rotate(359deg); }
0% { @include transform(translateX(-50%) translateY(-50%) rotate(0deg)); }
100% { @include transform(translateX(-50%) translateY(-50%) rotate(359deg)); }
}
@include animation-name(rotateCentered);
@include animation-duration(0.5s);