Browse Source

Fixed overflow on Station Cards

theflametrooper 8 years ago
parent
commit
d040563399
1 changed files with 9 additions and 1 deletions
  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>