diff --git a/src/App.vue b/src/App.vue
index 2889d60..1b51b1f 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -12,8 +12,10 @@
@@ -62,6 +64,14 @@ export default {
animation-duration: 2s;
animation-iteration-count: 1;
}
+.nav-container .in {
+ display: flex;
+ align-items: center;
+}
+
+.collapsed .in {
+ flex-direction: column;
+}
#logo-container {
height: 60px;
@@ -94,21 +104,25 @@ export default {
.l-container #settings-button {
position: absolute;
bottom: 0;
- color: #fff;
display: flex;
- align-items: center;
- justify-content: flex-start;
+ color: #fff;
height: 50px;
width: 100%;
}
+#settings-button .in {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
.l-container #settings-button:hover {
background: #17c93d7c;
cursor: pointer;
}
.l-container #settings-button #settings-icon {
- margin-left: 10px;
+ margin-left: 23px;
margin-right: 5px;
width: 24px;
height: 24px;
@@ -118,13 +132,7 @@ export default {
background-position: center;
}
-.collapsed #settings-button {
- flex-direction: column;
- justify-content: center;
-}
-
.collapsed #settings-button #settings-icon {
- margin-left: 0;
margin-right: 0;
}
diff --git a/src/components/LeftSidebar/Navigation.vue b/src/components/LeftSidebar/Navigation.vue
index 6fa5bb0..a3dca7e 100644
--- a/src/components/LeftSidebar/Navigation.vue
+++ b/src/components/LeftSidebar/Navigation.vue
@@ -91,7 +91,7 @@ export default {
.collapsed span {
font-size: small;
- margin-top: 20px;
+ margin-top: 5px;
}
.nav-container .nav-button:hover {