Browse Source

fix(Home page): Create Station card broken on mobile

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 years ago
parent
commit
9c47a6b4d0
1 changed files with 26 additions and 11 deletions
  1. 26 11
      frontend/src/pages/Home.vue

+ 26 - 11
frontend/src/pages/Home.vue

@@ -1057,20 +1057,35 @@ html {
 	}
 
 	&.createStation {
-		.card-image .image.is-square {
-			width: 120px;
-			.material-icons {
-				position: absolute;
-				top: 25px;
-				bottom: 25px;
-				left: 0;
-				right: 0;
-				text-align: center;
-				font-size: 70px;
-				color: var(--primary-color);
+		height: auto;
+
+		.card-image {
+			.image.is-square {
+				width: 120px;
+
+				@media screen and (max-width: 330px) {
+					width: 50px;
+
+					.material-icons {
+						font-size: 35px !important;
+					}
+				}
+
+				.material-icons {
+					position: absolute;
+					top: 25px;
+					bottom: 25px;
+					left: 0;
+					right: 0;
+					text-align: center;
+					font-size: 70px;
+					color: var(--primary-color);
+				}
 			}
 		}
 		.card-content {
+			width: min-content;
+
 			.media {
 				margin-top: auto;
 				.displayName h5 {