0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-06 12:01:19 -05:00

🐛 fix modal text color + remove lines in shared library modal

This commit is contained in:
Belén Albeza 2023-12-13 16:32:26 +01:00
parent 936fb2b6f1
commit 05614a345d
2 changed files with 8 additions and 7 deletions

View file

@ -106,9 +106,8 @@
(:typography-count summary))]
(modal/show
{:type :confirm
:message ""
:title (tr "modals.add-shared-confirm.message" (:name summary))
:hint (if (zero? count) (tr "modals.add-shared-confirm-empty.hint") (tr "modals.add-shared-confirm.hint"))
:message (if (zero? count) (tr "modals.add-shared-confirm-empty.hint") (tr "modals.add-shared-confirm.hint"))
:cancel-label (if (zero? count) (tr "labels.cancel") :omit)
:accept-label (tr "modals.add-shared-confirm.accept")
:accept-style :primary

View file

@ -26,11 +26,6 @@
.modal-content {
@include titleTipography;
margin-bottom: $s-24;
.modal-msg,
.modal-scd-msg,
.modal-subtitle {
@include titleTipography;
}
.component-list {
.modal-item-element {
@include flexRow;
@ -68,3 +63,10 @@
}
}
}
.modal-scd-msg,
.modal-subtitle,
.modal-msg {
@include titleTipography;
color: var(--modal-text-foreground-color);
}