mirror of
https://github.com/penpot/penpot.git
synced 2026-09-01 17:49:08 +00:00
50 lines
896 B
SCSS
50 lines
896 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
|
|
|
|
@import "refactor/common-refactor.scss";
|
|
|
|
.tool-window {
|
|
position: relative;
|
|
display: grid;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding-left: $s-12;
|
|
}
|
|
|
|
.tab-spacing {
|
|
margin-right: $s-12;
|
|
}
|
|
|
|
.content-class {
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
height: calc(100vh - $s-96);
|
|
scrollbar-gutter: stable;
|
|
}
|
|
|
|
.element-options {
|
|
display: grid;
|
|
grid-auto-rows: min-content;
|
|
gap: $s-8;
|
|
width: 100%;
|
|
height: calc(100vh - $s-80);
|
|
padding-top: $s-8;
|
|
}
|
|
|
|
.design-options,
|
|
.interaction-options {
|
|
overflow: auto;
|
|
scrollbar-gutter: stable;
|
|
}
|
|
|
|
.inspect {
|
|
scrollbar-gutter: unset;
|
|
}
|
|
|
|
.options-tab-switcher {
|
|
--tabs-nav-padding-inline-end: 12px;
|
|
}
|