penpot/frontend/src/app/main/ui/components/code_block.scss
Eva Marco 441dc33e38
♻️ Add shortcut to scss import paths (#7364)
* 🎉 Add config for shortcut imports

* ♻️ Change import paths
2025-09-24 11:18:34 +02:00

20 lines
570 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/typography.scss" as t;
@use "ds/_borders.scss" as *;
.code-display {
@include t.use-typography("code-font");
user-select: text;
border-radius: $br-8;
margin-top: var(--sp-s);
padding: var(--sp-m);
background-color: var(--menu-background-color);
color: var(--input-foreground-color-active);
overflow: auto;
}