reversed dashboard-padding

This commit is contained in:
ijin08
2019-03-21 12:15:13 +01:00
parent 29e68ba1fc
commit 8d03db2474
4 changed files with 9 additions and 9 deletions

View File

@@ -196,7 +196,7 @@ $btn-semi-transparent: rgba(0, 0, 0, 0.2) !default;
$side-menu-width: 60px; $side-menu-width: 60px;
// dashboard // dashboard
$dashboard-padding: $space-md $space-md 0 $space-md; $dashboard-padding: $space-md;
$panel-padding: 0 $space-md $space-sm $space-md; $panel-padding: 0 $space-md $space-sm $space-md;
// tabs // tabs

View File

@@ -9,14 +9,14 @@
&--edit { &--edit {
height: 40%; height: 40%;
margin: 0 $space-md; margin: 0 $dashboard-padding;
} }
&--view { &--view {
flex: 1 1 0; flex: 1 1 0;
height: 90%; height: 90%;
margin: 0 $space-md; margin: 0 $dashboard-padding;
padding-top: $space-md; padding-top: $dashboard-padding;
} }
} }
@@ -80,7 +80,7 @@
} }
.submenu-controls { .submenu-controls {
padding: 0 $space-md $space-sm $space-md; padding: 0 $dashboard-padding $space-sm $dashboard-padding;
} }
.search-container { .search-container {

View File

@@ -1,5 +1,5 @@
.dashboard-container { .dashboard-container {
padding: $dashboard-padding; padding: $dashboard-padding $dashboard-padding 0 $dashboard-padding;
width: 100%; width: 100%;
height: 100%; height: 100%;
box-sizing: border-box; box-sizing: border-box;

View File

@@ -31,7 +31,7 @@
flex-flow: row wrap; flex-flow: row wrap;
justify-content: flex-start; justify-content: flex-start;
height: auto; height: auto;
padding: 0 $space-md; padding: 0 $dashboard-padding;
border-bottom: 1px solid #0000; border-bottom: 1px solid #0000;
transition-duration: 0.35s; transition-duration: 0.35s;
transition-timing-function: ease-in-out; transition-timing-function: ease-in-out;
@@ -91,7 +91,7 @@
} }
.explore-toolbar-content-item:first-child { .explore-toolbar-content-item:first-child {
padding-left: $space-md; padding-left: $dashboard-spacer;
margin-right: auto; margin-right: auto;
} }
@@ -142,7 +142,7 @@
@media only screen and (max-width: 544px) { @media only screen and (max-width: 544px) {
.explore-toolbar-header-title { .explore-toolbar-header-title {
.navbar-page-btn { .navbar-page-btn {
margin-left: $space-md; margin-left: $dashboard-padding;
} }
} }
} }