- added models to parse the tenor-api-response correctly - continued with designing the main chat-page
47 lines
774 B
Vue
47 lines
774 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router';
|
|
import ProtectedData from './components/ProtectedData.vue';
|
|
import IndexPage from 'pages/IndexPage.vue';
|
|
defineOptions({
|
|
name: 'App'
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<IndexPage></IndexPage>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style>
|
|
header {
|
|
line-height: 1.5;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 7vh;
|
|
}
|
|
|
|
/* CUSTOM SCROLLBAR DESIGN START */
|
|
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: white;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: #888;
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
/* CUSTOM SCROLLBAR DESIGN ENDE */
|
|
</style>
|