Skip to content

Commit 623dafc

Browse files
committed
refactor: remove footer
1 parent afda51b commit 623dafc

File tree

4 files changed

+1
-57
lines changed

4 files changed

+1
-57
lines changed

src/App.vue

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,13 @@
1818
</router-view>
1919
</div>
2020
</div>
21-
22-
<Footer></Footer>
2321
</template>
2422

2523
<script>
2624
import { useMeta } from 'vue-meta';
2725
2826
import Header from '@/components/Header.vue';
2927
import Error from '@/components/Error.vue';
30-
import Footer from '@/components/Footer.vue';
3128
import { APP_TITLE } from '@/common/config';
3229
3330
import store from './store';
@@ -39,7 +36,6 @@ export default {
3936
components: {
4037
Header,
4138
Error,
42-
Footer
4339
},
4440
computed: {
4541
client: () => store.state.client,
@@ -114,7 +110,7 @@ $padding: 25px;
114110
.view-container {
115111
overflow-y: auto;
116112
top: $header-height;
117-
height: calc(100vh - #{$header-height} - #{$footer-height});
113+
height: calc(100vh - #{$header-height});
118114
119115
.inner {
120116
width: $inner-width;

src/assets/styles/main.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,4 @@ ul {
126126
.fade-enter-from,
127127
.fade-leave-to {
128128
opacity: 0;
129-
}
130-
131-
@media only screen and (max-width: 768px) {
132-
footer {
133-
display: none;
134-
}
135129
}

src/assets/styles/variables.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ $success-color: #64c72b;
88
$inner-width: 580px;
99
$header-height: 75px;
1010
$header-height-mobile: 60px;
11-
$footer-height: 90px;
1211
$chat-width: 330px;
1312
$player-controls-height: 5rem;

src/components/Footer.vue

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)