mirror of
https://github.com/penpot/penpot.git
synced 2025-05-05 12:05:55 +02:00
🐛 Fix wrong text and styles from AB test (#5762)
This commit is contained in:
parent
4bfe4ca230
commit
9b64a6034b
2 changed files with 7 additions and 3 deletions
|
@ -79,7 +79,7 @@
|
||||||
:on-click on-click
|
:on-click on-click
|
||||||
:on-mouse-enter on-mouse-enter
|
:on-mouse-enter on-mouse-enter
|
||||||
:on-mouse-leave on-mouse-leave}
|
: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)
|
[:button {:class (stl/css :create-new)
|
||||||
:on-click on-click}
|
:on-click on-click}
|
||||||
i/add])]))))
|
i/add])]))))
|
||||||
|
|
|
@ -105,9 +105,9 @@
|
||||||
|
|
||||||
.empty-project-container {
|
.empty-project-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: grid;
|
||||||
justify-content: space-around;
|
|
||||||
gap: $s-16;
|
gap: $s-16;
|
||||||
|
grid-template-columns: 1fr 1fr 1fr;
|
||||||
margin-top: $s-12;
|
margin-top: $s-12;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,6 +130,10 @@
|
||||||
--color-card-title: var(--color-background-secondary);
|
--color-card-title: var(--color-background-secondary);
|
||||||
--color-card-subtitle: var(--color-background-secondary);
|
--color-card-subtitle: var(--color-background-secondary);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
|
.empty-project-card-title {
|
||||||
|
font-weight: $fw500;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue