Browse Source

fix(AddToPlaylistDropdown): long playlist names would overflow

Kristian Vos 3 years ago
parent
commit
7395b6b291
1 changed files with 2 additions and 1 deletions
  1. 2 1
      frontend/src/App.vue

+ 2 - 1
frontend/src/App.vue

@@ -647,7 +647,7 @@ a {
 			border: 0;
 			padding: 10px;
 			font-size: 15.5px;
-			height: 36px;
+			min-height: 36px;
 			background: var(--light-grey);
 			border-radius: 5px;
 			cursor: pointer;
@@ -656,6 +656,7 @@ a {
 				display: flex;
 				flex-direction: row;
 				align-items: center;
+				overflow-wrap: anywhere;
 
 				p {
 					margin-left: 10px;