UX: improve handling of long theme names in admin (#23963)

This commit is contained in:
Kris 2023-10-18 09:41:21 -04:00 committed by GitHub
parent 3690fe59cc
commit 31797ebc40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,6 +114,10 @@
display: flex;
align-items: center;
span {
min-width: 0;
overflow-wrap: anywhere;
}
input {
margin: 0;
}
@ -329,7 +333,7 @@
overflow: hidden;
display: flex;
align-items: center;
height: 2em;
@include line-clamp(4);
.icons {
margin-left: auto;
}
@ -367,8 +371,13 @@
}
}
.components {
overflow-wrap: anywhere;
}
.inner-wrapper {
padding: 10px;
box-sizing: border-box;
padding: 0.67em;
cursor: pointer;
}