mirror of
https://github.com/penpot/penpot.git
synced 2026-05-25 18:03:43 +00:00
* 💄 Update constraint component * 💄 Update fill and selected color components * 💄 Update stroke component * 💄 Update text component * 💄 Update frame grid component * 💄 Update export component * 💄 Update shadow and blur components * 💄 Update colorpicker component UI * 💄 Update svg attrs and componets components UI * 💄 Small UI changes * 🐛 Fix shadow functions
35 lines
710 B
SCSS
35 lines
710 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: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
padding-left: $s-12;
|
|
|
|
.tab-spacing {
|
|
margin-right: $s-12;
|
|
margin-bottom: $s-16;
|
|
}
|
|
|
|
.content-class {
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
height: calc(100vh - $s-96);
|
|
scrollbar-gutter: stable;
|
|
}
|
|
|
|
.element-options {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: $s-16;
|
|
}
|
|
}
|