Browse Source

fix: location of like/dislike buttons

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 4 years ago
parent
commit
167dca6772
1 changed files with 4 additions and 12 deletions
  1. 4 12
      frontend/components/Station/Station.vue

+ 4 - 12
frontend/components/Station/Station.vue

@@ -246,7 +246,6 @@
 								</form>
 								<div
 									class="column is-8-mobile is-5-desktop"
-									style="float: right;"
 								>
 									<ul
 										v-if="
@@ -257,7 +256,7 @@
 									>
 										<li
 											id="like"
-											class="right"
+											style="margin-right: 10px;"
 											@click="toggleLike()"
 										>
 											<span class="flow-text">{{
@@ -277,8 +276,6 @@
 										</li>
 										<li
 											id="dislike"
-											style="margin-right: 10px;"
-											class="right"
 											@click="toggleDislike()"
 										>
 											<span class="flow-text">{{
@@ -1702,6 +1699,9 @@ export default {
 }
 
 #ratings {
+	display: flex;
+	justify-content: flex-end;
+
 	span {
 		font-size: 1.68rem;
 	}
@@ -1813,14 +1813,6 @@ h6 {
 	font-weight: 200;
 }
 
-.left {
-	float: left !important;
-}
-
-.right {
-	float: right !important;
-}
-
 .light-blue {
 	background-color: $primary-color !important;
 }