Sfoglia il codice sorgente

fix(ManageStation): lack of padding on some station settings dropdowns

Signed-off-by: Jonathan Graham <theflametrooper@gmail.com>
Jonathan Graham 3 anni fa
parent
commit
8aeeb72d8f

+ 1 - 0
frontend/src/components/modals/EditSong/index.vue

@@ -1768,6 +1768,7 @@ export default {
 					font-size: 21px;
 					font-weight: 400;
 					width: 200px;
+					margin: 0 5px;
 
 					img {
 						height: 21px;

+ 9 - 1
frontend/src/components/modals/ManageStation/Tabs/Settings.vue

@@ -39,6 +39,7 @@
 				>
 			</p>
 		</div>
+
 		<div class="settings-buttons">
 			<div class="small-section">
 				<label class="label">Theme</label>
@@ -93,6 +94,7 @@
 					</tippy>
 				</div>
 			</div>
+
 			<div class="small-section">
 				<label class="label">Privacy</label>
 				<div class="button-wrapper">
@@ -146,6 +148,7 @@
 					</tippy>
 				</div>
 			</div>
+
 			<div class="small-section">
 				<label class="label">Station Mode</label>
 				<div class="button-wrapper" v-if="station.type === 'community'">
@@ -202,6 +205,7 @@
 					</button>
 				</div>
 			</div>
+
 			<div v-if="!station.partyMode" class="small-section">
 				<label class="label">Play Mode</label>
 				<div class="button-wrapper" v-if="station.type === 'community'">
@@ -259,6 +263,7 @@
 					</button>
 				</div>
 			</div>
+
 			<div
 				v-if="
 					station.type === 'community' && station.partyMode === true
@@ -551,6 +556,10 @@ export default {
 			max-width: 150px !important;
 		}
 
+		.tippy-content span button {
+			width: 150px;
+		}
+
 		button {
 			width: 100%;
 			height: 36px;
@@ -562,7 +571,6 @@ export default {
 			display: block;
 			text-align: center;
 			justify-content: center;
-			display: inline-flex;
 			-ms-flex-align: center;
 			align-items: center;
 			-moz-user-select: none;