mirror of
https://github.com/penpot/penpot.git
synced 2026-05-23 17:03:41 +00:00
27 lines
657 B
SCSS
27 lines
657 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/.
|
|
//
|
|
// Copyright (c) KALEIDOS INC
|
|
|
|
@use "refactor/common-refactor.scss" as *;
|
|
|
|
.dashboard {
|
|
@extend .new-scrollbar;
|
|
background-color: var(--app-background);
|
|
display: grid;
|
|
grid-template-columns: $s-40 $s-256 1fr;
|
|
grid-template-rows: $s-52 1fr;
|
|
height: 100vh;
|
|
}
|
|
|
|
.dashboard-content {
|
|
display: grid;
|
|
grid-template-rows: $s-64 1fr;
|
|
position: relative;
|
|
grid-row: 1 / span 2;
|
|
padding: $s-16 $s-16 0 0;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|