0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-22 22:49:01 -05:00

🐛 Fix webhook checkbox position

This commit is contained in:
Eva Marco 2024-09-04 12:51:30 +02:00
parent 59063e861c
commit 8d66275187
2 changed files with 5 additions and 2 deletions

View file

@ -71,6 +71,7 @@
### :bug: Bugs fixed ### :bug: Bugs fixed
- Fix webhook checkbox position [Taiga #8634](https://tree.taiga.io/project/penpot/issue/8634)
- Fix wrong props on padding input [Taiga #8254](https://tree.taiga.io/project/penpot/issue/8254) - Fix wrong props on padding input [Taiga #8254](https://tree.taiga.io/project/penpot/issue/8254)
- Fix fill collapsed options [Taiga #8351](https://tree.taiga.io/project/penpot/issue/8351) - Fix fill collapsed options [Taiga #8351](https://tree.taiga.io/project/penpot/issue/8351)
- Fix scroll on color picker modal [Taiga #8353](https://tree.taiga.io/project/penpot/issue/8353) - Fix scroll on color picker modal [Taiga #8353](https://tree.taiga.io/project/penpot/issue/8353)

View file

@ -519,8 +519,10 @@
@include bodySmallTypography; @include bodySmallTypography;
color: var(--modal-title-foreground-color); color: var(--modal-title-foreground-color);
} }
// TODO: This fix is temporary, the error is caused by the
.custom-input-checkbox { // cascading order of the compiled css files.
// https://tree.taiga.io/project/penpot/task/8658
.custom-input-checkbox.custom-input-checkbox {
align-items: flex-start; align-items: flex-start;
} }