- gif search
- added models to parse the tenor-api-response correctly - continued with designing the main chat-page
This commit is contained in:
24
src/App.vue
24
src/App.vue
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user