Explorar o código

Fixed overflow on Station Cards

theflametrooper %!s(int64=8) %!d(string=hai) anos
pai
achega
d040563399
Modificáronse 1 ficheiros con 9 adicións e 1 borrados
  1. 9 1
      frontend/components/pages/Home.vue

+ 9 - 1
frontend/components/pages/Home.vue

@@ -199,11 +199,19 @@
 		}
 	}
 
-	.card { display: inline-block; }
+	.card {
+		display: inline-block;
+		height: 415px;
+		overflow: hidden;
+	}
 
 	.media-left {
 		word-wrap: break-word;
     	width: 80%;
 	}
+
+	.content {
+		word-wrap: break-word;
+	}
 	
 </style>