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:
parent
936fb2b6f1
commit
05614a345d
2 changed files with 8 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue