diff --git a/src/components/Counter.vue b/src/components/Counter.vue
index 14c4c2a..4e84d43 100644
--- a/src/components/Counter.vue
+++ b/src/components/Counter.vue
@@ -1,72 +1,60 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -74,57 +62,57 @@ export default {
@import "@/styles/_base.scss";
.counter {
- background-color: #444;
- border-radius: 13px;
- border: 1px solid #222;
- height: 75px;
- width: 100%;
- box-sizing: border-box;
- box-shadow: 1px 1px 5px #222;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- align-items: center;
+ background-color: #444;
+ border-radius: 13px;
+ border: 1px solid #222;
+ height: 75px;
+ width: 100%;
+ box-sizing: border-box;
+ box-shadow: 1px 1px 5px #222;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-around;
+ align-items: center;
}
.first,
.third {
- font-size: 16pt;
+ font-size: 16pt;
}
.second {
- display: flex;
- flex-direction: column;
- text-align: center;
- .name {
- background: transparent;
- color: #ddd;
- border: none;
+ display: flex;
+ flex-direction: column;
text-align: center;
- width: 100px;
- }
- .value {
- background: transparent;
- color: #ddd;
- border: none;
- text-align: center;
- width: 100px;
- font-size: 16pt;
- }
+ .name {
+ background: transparent;
+ color: #ddd;
+ border: none;
+ text-align: center;
+ width: 100px;
+ }
+ .value {
+ background: transparent;
+ color: #ddd;
+ border: none;
+ text-align: center;
+ width: 100px;
+ font-size: 16pt;
+ }
}
.actions {
- color: $accent-colour;
- background: none;
- border: none;
- border-radius: 50%;
- width: 50px;
- height: 50px;
- transition: background-color 0.1s;
- &:hover {
- background-color: #555;
- outline: none;
- }
- &:active {
- background-color: #666;
- }
+ color: $accent-colour;
+ background: none;
+ border: none;
+ border-radius: 50%;
+ width: 50px;
+ height: 50px;
+ transition: background-color 0.1s;
+ &:hover {
+ background-color: #555;
+ outline: none;
+ }
+ &:active {
+ background-color: #666;
+ }
}