0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-09 21:41:23 -05:00

🐛 Fix wrong text and styles from AB test (#5762)

This commit is contained in:
Marina López 2025-02-04 15:20:22 +01:00 committed by GitHub
parent 4bfe4ca230
commit 9b64a6034b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View file

@ -79,7 +79,7 @@
:on-click on-click
:on-mouse-enter on-mouse-enter
:on-mouse-leave on-mouse-leave}
(if @show-text (tr "dashboard.add-file") i/add)]
(if @show-text (tr "dashboard.empty-project.create") i/add)]
[:button {:class (stl/css :create-new)
:on-click on-click}
i/add])]))))

View file

@ -105,9 +105,9 @@
.empty-project-container {
width: 100%;
display: flex;
justify-content: space-around;
display: grid;
gap: $s-16;
grid-template-columns: 1fr 1fr 1fr;
margin-top: $s-12;
}
@ -130,6 +130,10 @@
--color-card-title: var(--color-background-secondary);
--color-card-subtitle: var(--color-background-secondary);
cursor: pointer;
.empty-project-card-title {
font-weight: $fw500;
}
}
flex-grow: 1;