Fleet UI: Fix software name from overflowing (#25262)

This commit is contained in:
RachelElysia 2025-01-08 16:35:48 -05:00 committed by GitHub
parent 4479484333
commit 800aa7ecbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1 @@
* Fleet UI: Fixed software name overflow

View file

@ -15,6 +15,7 @@
&__name {
font-size: $x-small;
font-weight: $bold;
overflow-wrap: anywhere; // Prevent long file name overflow
}
&__platform {

View file

@ -0,0 +1,3 @@
.delete-software-modal {
overflow-wrap: anywhere; // Prevent long software name overflow
}