mirror of
https://github.com/penpot/penpot.git
synced 2026-05-24 09:23:40 +00:00
23 lines
566 B
SCSS
23 lines
566 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 *;
|
|
|
|
.settings-bar-left {
|
|
background-color: var(--panel-background-color);
|
|
height: 100%;
|
|
width: $s-256;
|
|
}
|
|
|
|
.settings-bar-inside {
|
|
display: grid;
|
|
grid-template-columns: 100%;
|
|
grid-template-rows: 100%;
|
|
height: calc(100% - $s-2);
|
|
overflow-y: auto;
|
|
padding-top: $s-8;
|
|
}
|