mirror of
https://github.com/penpot/penpot.git
synced 2025-12-12 06:24:17 +01:00
* 🐛 Fix import warnings 1 of 2 * 🐛 Fix import warnings 2 of 2 * 🐛 Fix visual tests and format files * 🐛 Fix mixed declarations on scss
77 lines
1.4 KiB
SCSS
77 lines
1.4 KiB
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 *;
|
|
|
|
.modal-overlay {
|
|
@extend .modal-overlay-base;
|
|
}
|
|
|
|
.modal-container {
|
|
@extend .modal-container-base;
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
gap: $s-32;
|
|
padding-inline: $s-100;
|
|
padding-block-start: $s-100;
|
|
padding-block-end: $s-72;
|
|
margin: 0;
|
|
width: $s-960;
|
|
height: $s-632;
|
|
max-width: $s-960;
|
|
max-height: $s-632;
|
|
}
|
|
|
|
.modal-left {
|
|
width: $s-172;
|
|
margin-block-end: $s-64;
|
|
img {
|
|
width: $s-172;
|
|
border-radius: $br-8 0 0 $br-8;
|
|
}
|
|
}
|
|
|
|
.modal-right {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: $s-40 auto auto auto auto $s-32;
|
|
gap: $s-24;
|
|
position: relative;
|
|
}
|
|
|
|
.modal-title {
|
|
@include bigTitleTipography;
|
|
color: var(--modal-title-foreground-color);
|
|
}
|
|
|
|
.modal-text {
|
|
@include bodyLargeTypography;
|
|
color: var(--modal-text-foreground-color);
|
|
margin: 0;
|
|
}
|
|
|
|
.newsletter-options {
|
|
display: grid;
|
|
gap: $s-16;
|
|
margin-inline-start: $s-16;
|
|
}
|
|
|
|
.input-wrapper {
|
|
@extend .input-checkbox;
|
|
}
|
|
|
|
.modal-link {
|
|
@include bodyLargeTypography;
|
|
color: var(--modal-link-foreground-color);
|
|
margin: 0;
|
|
}
|
|
|
|
.accept-btn {
|
|
@extend .modal-accept-btn;
|
|
justify-self: flex-end;
|
|
}
|