- gif search

- added models to parse the tenor-api-response correctly
- continued with designing the main chat-page
This commit is contained in:
joschuatonn
2024-05-04 19:03:24 +02:00
parent ef105ded6d
commit 1876482e5e
7 changed files with 482 additions and 119 deletions

View File

@@ -12,7 +12,7 @@ defineOptions({
<router-view />
</template>
<style scoped>
<style>
header {
line-height: 1.5;
display: flex;
@@ -21,4 +21,26 @@ header {
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>