mirror of
https://github.com/penpot/penpot.git
synced 2026-05-30 04:08:08 +00:00
30 lines
704 B
SCSS
30 lines
704 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 "common/refactor/common-refactor" as *;
|
|
@use "./profile";
|
|
|
|
.feedback-form {
|
|
textarea {
|
|
border-radius: $br-8;
|
|
padding: $br-12;
|
|
background-color: var(--color-background-tertiary);
|
|
color: var(--color-foreground-primary);
|
|
border: none;
|
|
|
|
::placeholder {
|
|
color: var(--color-background-disabled);
|
|
}
|
|
&:focus {
|
|
outline: $s-1 solid var(--color-accent-primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.feedback-button-link {
|
|
@extend .button-primary;
|
|
}
|