Files
ptpchat-frontend/src/App.vue
joschuatonn 1876482e5e - gif search
- added models to parse the tenor-api-response correctly
- continued with designing the main chat-page
2024-05-04 19:03:24 +02:00

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>