Skip to content

Commit

Permalink
white space normal on item names (#2442)
Browse files Browse the repository at this point in the history
  • Loading branch information
adlius authored Dec 30, 2024
1 parent f43b9ea commit 8592e9d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,7 @@
margin-top: 2rem;
float: right;
}

.item-name {
white-space: normal;
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,13 @@
aria-label={{t 'addons.configure.go-to-folder' folderName=folder.itemName}}
{{on 'click' (fn fileManager.goToFolder folder)}}
>
<FaIcon @icon='folder' />
{{folder.itemName}}
<span local-class='item-name'>
<FaIcon @icon='folder' />
{{folder.itemName}}
</span>
</Button>
{{else}}
<span>
<span local-class='item-name'>
<FaIcon @icon='folder' />
{{folder.itemName}}
</span>
Expand Down

0 comments on commit 8592e9d

Please sign in to comment.