mirror of
https://github.com/penpot/penpot.git
synced 2026-09-01 17:49:08 +00:00
* 🐛 Fix spacing between SSO buttons and email field * ♻️ Update scrollbar on register page * ♻️ Translate hardcoded string --------- Co-authored-by: Eva Marco <evamarcod@gmail.com>
85 lines
1.5 KiB
SCSS
85 lines
1.5 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 Sucursal en España SL
|
|
|
|
@use "./common";
|
|
@use "ds/_utils.scss" as *;
|
|
@use "ds/_sizes.scss" as *;
|
|
@use "ds/_borders.scss" as *;
|
|
@use "ds/typography.scss" as *;
|
|
|
|
.checkbox-newsletter-updates {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.checkbox-terms-and-privacy {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.register-form {
|
|
gap: var(--sp-xxl);
|
|
}
|
|
|
|
.account-row {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: var(--sp-s);
|
|
padding: 0;
|
|
}
|
|
|
|
.account-text {
|
|
@include use-typography("title-small");
|
|
|
|
text-align: right;
|
|
color: var(--color-foreground-secondary);
|
|
}
|
|
|
|
.account-link {
|
|
@include use-typography("title-small");
|
|
|
|
text-align: left;
|
|
background-color: transparent;
|
|
border: none;
|
|
display: inline;
|
|
color: var(--color-accent-primary);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.register-success {
|
|
gap: var(--sp-xxl);
|
|
}
|
|
|
|
.register-success-title {
|
|
@include use-typography("title-medium");
|
|
|
|
line-height: 1.2;
|
|
color: var(--color-foreground-primary);
|
|
}
|
|
|
|
.terms {
|
|
@include use-typography("body-small");
|
|
|
|
display: flex;
|
|
gap: var(--sp-xs);
|
|
justify-content: center;
|
|
inline-size: 100%;
|
|
}
|
|
|
|
.terms-link {
|
|
color: var(--color-accent-primary);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.terms-and {
|
|
border-block-end: $b-1 solid transparent;
|
|
color: var(--color-foreground-secondary);
|
|
}
|