Browse Source

Footer is now horizontally centered

theflametrooper 8 years ago
parent
commit
b7b3724843
1 changed files with 7 additions and 5 deletions
  1. 7 5
      frontend/components/MainFooter.vue

+ 7 - 5
frontend/components/MainFooter.vue

@@ -25,11 +25,13 @@
 </template>
 
 <style lang='scss' scoped>
-	.content a:not(.button) {
-		border: 0;
-	}
+	.content a:not(.button) { border: 0; }
 
-	.icon:visited {
-		color: #4a4a4a !important;
+	.content {
+		display: flex;
+		align-items: center;
+		flex-direction: column;
 	}
+
+	.icon:visited { color: #4a4a4a !important; }
 </style>