🐛 Fix misalignments at create account (#6692)

This commit is contained in:
María Valderrama
2025-06-16 13:26:33 +02:00
committed by GitHub
parent f21e546bc1
commit d0aac65c76
3 changed files with 6 additions and 1 deletions

View File

@@ -47,6 +47,7 @@ on-premises instances** that want to keep up to date.
- Fix element positioning on the right side to adjust to grid [#11073](https://tree.taiga.io/project/penpot/issue/11073)
- Fix palette is over sidebar [#11160](https://tree.taiga.io/project/penpot/issue/11160)
- Fix font size input not displaying "mixed" when multiple texts are selected [Taiga #11177](https://tree.taiga.io/project/penpot/issue/11177)
- Misalignments at Create account [Taiga #11315](https://tree.taiga.io/project/penpot/issue/11315)
## 2.7.2

View File

@@ -35,6 +35,7 @@
:content (tr "onboarding-v2.newsletter.updates")}])]
[:div {:class (stl/css :fields-row :input-visible :newsletter-option-wrapper)}
[:& fm/input {:name :accept-newsletter-updates
:class (stl/css :checkbox-newsletter-updates)
:type "checkbox"
:default-checked false
:label updates-label}]]))
@@ -53,6 +54,7 @@
[:div {:class (stl/css :fields-row :input-visible :accept-terms-and-privacy-wrapper)}
[:& fm/input {:name :accept-terms-and-privacy
:show-error false
:class (stl/css :checkbox-terms-and-privacy)
:type "checkbox"
:default-checked false

View File

@@ -14,9 +14,11 @@
}
}
.checkbox-terms-and-privacy {
.checkbox-terms-and-privacy,
.checkbox-newsletter-updates {
align-items: flex-start;
}
.register-form {
gap: $s-24;
}