mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-06-28 23:25:13 +00:00
Cleanup variables in Shadow DOM
This commit is contained in:
@ -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>
|
||||
|
@ -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;
|
||||
|
Reference in New Issue
Block a user