Skip to content

Commit 95c155d

Browse files
committed
fixed footer and slow tree
1 parent a51f6ca commit 95c155d

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

src/components/Footer.vue

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<q-footer reveal class="gradient text-white" :style="{ height: `${height}vh` }">
3-
<q-toolbar>
3+
<q-toolbar class="toolbar-background">
44
<q-btn flat color="subaccent" round @click="openBottomDrawer">
55
<i :class="[open ? down : up]" id="btn" ></i>
66
</q-btn>
@@ -90,7 +90,7 @@ i {
9090
transition-timing-function: ease-in;
9191
transition: 0.2s;
9292
// background: #313131;
93-
background: black;
93+
background: #272822;
9494
}
9595
// changes the footer toolbar height
9696
.q-toolbar {
@@ -106,9 +106,9 @@ i {
106106
// this class selector does not change anything
107107
.q-tab__label {
108108
// font-size not changing
109-
font-size: 10px !important;
110-
line-height: 1.718em;
111-
font-weight: 500;
109+
font-size: 10px !important;
110+
line-height: 1.718em;
111+
font-weight: 500;
112112
}
113113
// changes the tab label styling
114114
#label-text {
@@ -129,7 +129,11 @@ i {
129129
.q-tabs {
130130
background: #11120F;
131131
}
132+
.toolbar-background {
133+
background: black;
134+
}
132135
.full-footer {
133-
height: 100vh;
136+
// height: 100vh;
137+
padding-bottom: 0px;
134138
}
135139
</style>

src/components/Tree.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default {
9191
/* changes the stroke color */
9292
.treeclass .linktree {
9393
stroke: $secondary !important;
94-
stroke-opacity: 1;
94+
stroke-opacity: 0.4;
9595
stroke-width: 8px;
9696
}
9797
</style>

src/layouts/MyLayout.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ export default {
6262
<style lang="stylus">
6363
.q-layout {
6464
transition-timing-function: ease-in;
65-
transition: 0.2s;
6665
}
6766
.export-btn {
6867
margin-left: 0.3rem;

0 commit comments

Comments
 (0)