🐛 Fix libraries carrousel styles (#6140)

This commit is contained in:
ºelhombretecla 2025-03-25 15:51:34 +01:00 committed by GitHub
parent dc84ab3e41
commit a7044c73ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 7 deletions

View file

@ -40,7 +40,7 @@
- Fix problem with constraints when creating group [Taiga #10455](https://tree.taiga.io/project/penpot/issue/10455) - Fix problem with constraints when creating group [Taiga #10455](https://tree.taiga.io/project/penpot/issue/10455)
- Fix opening pen with shortcut multiple times breaks toolbar [Taiga #10566](https://tree.taiga.io/project/penpot/issue/10566) - Fix opening pen with shortcut multiple times breaks toolbar [Taiga #10566](https://tree.taiga.io/project/penpot/issue/10566)
- Fix actions when workspace is visited first time [Taiga #10548](https://tree.taiga.io/project/penpot/issue/10548) - Fix actions when workspace is visited first time [Taiga #10548](https://tree.taiga.io/project/penpot/issue/10548)
- Chat icon overlaps "Show" button in carrousel section [Taiga #10542](https://tree.taiga.io/project/penpot/issue/10542)
## 2.5.4 ## 2.5.4

View file

@ -13,6 +13,7 @@
margin-right: $s-16; margin-right: $s-16;
border-top: $s-1 solid var(--panel-border-color); border-top: $s-1 solid var(--panel-border-color);
overflow-y: auto; overflow-y: auto;
padding-bottom: $s-32;
} }
.dashboard-projects { .dashboard-projects {

View file

@ -11,9 +11,10 @@
bottom: 0; bottom: 0;
border-bottom-left-radius: $br-8; border-bottom-left-radius: $br-8;
border-bottom-right-radius: $br-8; border-bottom-right-radius: $br-8;
border-top-right-radius: $br-8;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
height: $s-228; height: $s-244;
justify-content: flex-end; justify-content: flex-end;
margin-left: $s-6; margin-left: $s-6;
margin-right: $s-6; margin-right: $s-6;
@ -39,8 +40,8 @@
.title { .title {
pointer-events: all; pointer-events: all;
width: 100%; width: $s-420;
top: calc(-1 * $s-56); top: calc(-1 * $s-40);
text-align: right; text-align: right;
height: $s-56; height: $s-56;
position: absolute; position: absolute;
@ -102,8 +103,8 @@
.move-button { .move-button {
position: absolute; position: absolute;
top: $s-80; top: $s-96;
border: $s-2 solid var(--button-secondary-background-color-rest); border: $s-2 solid var(--color-foreground-secondary);
border-radius: 50%; border-radius: 50%;
text-align: center; text-align: center;
width: $s-36; width: $s-36;
@ -139,7 +140,7 @@
font-size: $fs-14; font-size: $fs-14;
color: var(--color-foreground-primary); color: var(--color-foreground-primary);
margin-bottom: -8px; margin-bottom: -8px;
margin-top: -4px; margin-top: $s-16;
margin-left: $s-16; margin-left: $s-16;
visibility: visible; visibility: visible;
} }