mirror of
https://github.com/penpot/penpot.git
synced 2026-08-16 17:58:40 +00:00
* 🔧 Add SCSS linter (stylelint) * ✨ Fix default standard scss errors with extends - WIP * ✨ Fix default standard scss errors * ✨ Update and cleanup * ✨ Update and cleanup * ✨ Update and cleanup * 🐛 Fix broken visual regression tests * 📎 Add to CHANGES * ♻️ Remove unused class
28 lines
821 B
SCSS
28 lines
821 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 "ds/_sizes.scss" as *;
|
|
@use "ds/_utils.scss" as *;
|
|
|
|
.element-options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--sp-l);
|
|
width: 100%;
|
|
max-height: calc(100vh - px2rem(128)); // TODO: Fix this hardcoded value
|
|
padding-top: var(--sp-s);
|
|
padding-inline: var(--sp-m);
|
|
overflow: hidden auto;
|
|
scrollbar-gutter: stable;
|
|
background-color: var(--low-emphasis-background);
|
|
}
|
|
|
|
.workspace-element-options {
|
|
max-height: calc(100vh - px2rem(180)); // TODO: Fix this hardcoded value
|
|
padding-inline: var(--sp-m);
|
|
background-color: var(--low-emphasis-background);
|
|
}
|