mirror of
https://github.com/penpot/penpot.git
synced 2025-01-11 01:10:28 -05:00
49 lines
989 B
SCSS
49 lines
989 B
SCSS
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
// This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
// defined by the Mozilla Public License, v. 2.0.
|
|
//
|
|
// Copyright (c) 2020 UXBOX Labs SL
|
|
|
|
.main-content {
|
|
display: flex;
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.dashboard-layout {
|
|
background-color: $color-white;
|
|
display: grid;
|
|
grid-template-rows: 50px 1fr;
|
|
grid-template-columns: 40px 220px 1fr;
|
|
height: 100vh;
|
|
|
|
.dashboard-sidebar {
|
|
grid-row: 1 / span 2;
|
|
grid-column: 1 / span 2;
|
|
// overflow: hidden;
|
|
}
|
|
|
|
.dashboard-content {
|
|
grid-row: 1 / span 2;
|
|
}
|
|
}
|
|
|
|
.dashboard-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.verify-token {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
|
|
svg#loader-pencil {
|
|
fill: $color-gray-50;
|
|
}
|
|
}
|
|
|