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:
parent
4bfe4ca230
commit
9b64a6034b
2 changed files with 7 additions and 3 deletions
|
@ -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])]))))
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue