mirror of
https://github.com/penpot/penpot.git
synced 2025-12-23 22:48:40 -05:00
35 lines
783 B
SCSS
35 lines
783 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 "refactor/common-refactor.scss" as deprecated;
|
|
@use "ds/_borders.scss" as *;
|
|
@use "ds/_sizes.scss" as *;
|
|
|
|
.attributes-block {
|
|
--box-border-color: var(--color-background-primary);
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-block-end: $b-2 solid var(--box-border-color);
|
|
}
|
|
|
|
.title-wrapper {
|
|
margin-inline-start: 0;
|
|
}
|
|
|
|
.fill-attr-title {
|
|
color: var(--entry-foreground-color-hover);
|
|
padding-block: var(--sp-s);
|
|
}
|
|
|
|
.attributes-content {
|
|
display: grid;
|
|
gap: deprecated.$s-4;
|
|
}
|
|
|
|
.attributes-fill-block {
|
|
block-size: $sz-36;
|
|
}
|