mirror of
https://github.com/penpot/penpot.git
synced 2026-05-22 00:13:41 +00:00
29 lines
646 B
SCSS
29 lines
646 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 "common/refactor/common-refactor.scss" as *;
|
|
@use "common/refactor/common-dashboard";
|
|
|
|
.dashboard-container {
|
|
flex: 1 0 0;
|
|
margin-right: $s-16;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
border-top: $s-1 solid $db-cuaternary;
|
|
|
|
&.dashboard-projects {
|
|
user-select: none;
|
|
}
|
|
&.dashboard-shared {
|
|
width: calc(100vw - $s-320);
|
|
margin-right: $s-52;
|
|
}
|
|
|
|
&.search {
|
|
margin-top: $s-12;
|
|
}
|
|
}
|