Cleanup variables in Shadow DOM

This commit is contained in:
Gabor PEK
2018-03-09 18:14:40 +01:00
parent c3f4ace7e9
commit 822b65462d
9 changed files with 33 additions and 543 deletions

View File

@ -1,5 +1,5 @@
<app-header></app-header>
<div class="tao-grid-main-components">
<div class="tfw-grid-main-components">
<div class="tfw-messages"><app-messages></app-messages></div>
<div class="tfw-web tao-grid-top-left"><app-login></app-login></div>
<div class="tfw-webide"><app-webide></app-webide></div>

View File

@ -1,6 +1,3 @@
//
// Variables
//
$space: 24px;
$tao-plum-900: #272F4C;
@ -8,17 +5,13 @@ $tao-gray-50: #FAFAFA;
$tao-navbar-height: 67px;
//
// Layouts
//
$layout-template: "raw"; // Change this to switch template
$layout-template: "default"; // Change this to switch template
$default-layout: (
'messages': (1, 2, 1, 4),
'webide': (4, -1, 1, -1),
'terminal': (1, 4, 4, -1),
'web': (2, 4, 1, 4)
'terminal': (1, 4, 4, -1),
'web': (2, 4, 1, 4)
);
$raw-layout: (
@ -34,7 +27,6 @@ $layout: (
);
@mixin position-grid-items($map, $sel) {
$sel: if($sel == '' and &, &, $sel);
@debug $sel;
@ -55,8 +47,7 @@ $layout: (
}
}
.tao-grid-main-components {
.tfw-grid-main-components {
overflow-y: hidden;
display: grid;
padding-top: $tao-navbar-height;