0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 00:10:11 -05:00

🐛 Fix assets group name when is too long

This commit is contained in:
Eva Marco 2024-03-13 09:57:12 +01:00
parent 946677f5b3
commit 98b41a5bff
2 changed files with 5 additions and 21 deletions

View file

@ -20,9 +20,10 @@
.title-only,
.inspect-title {
@include uppercaseTitleTipography;
display: flex;
display: grid;
align-items: center;
flex-grow: 1;
justify-content: flex-start;
grid-auto-flow: column;
height: 100%;
min-height: $s-32;
color: var(--title-foreground-color);
@ -30,7 +31,8 @@
}
.title-only {
margin-left: $s-8;
--title-bar-title-margin: #{$s-8};
margin-inline-start: var(--title-bar-title-margin);
}
.inspect-title {
@ -66,23 +68,6 @@
}
}
.title,
.title-only {
@include uppercaseTitleTipography;
display: flex;
align-items: center;
flex-grow: 1;
height: 100%;
min-height: $s-32;
color: var(--title-foreground-color);
overflow: hidden;
}
.title-only {
--title-bar-title-margin: #{$s-8};
margin-inline-start: var(--title-bar-title-margin);
}
.title-only-icon-gap {
--title-bar-title-margin: #{$s-12};
}

View file

@ -18,7 +18,6 @@
.path {
@include textEllipsis;
max-width: 90%;
margin-left: $s-2;
text-transform: initial;
color: var(--title-foreground-color-hover);