mirror of
https://github.com/penpot/penpot.git
synced 2026-05-28 03:13:40 +00:00
54 lines
980 B
SCSS
54 lines
980 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%;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.design-options {
|
|
padding-inline: var(--sp-m);
|
|
}
|
|
|
|
.inspect {
|
|
scrollbar-gutter: unset;
|
|
}
|
|
|
|
.options-tab-switcher {
|
|
--tabs-nav-padding-inline-start: var(--sp-m);
|
|
--tabs-nav-padding-inline-end: var(--sp-m);
|
|
}
|