diff --git a/src/App.vue b/src/App.vue index 56cc8f7..cf60931 100644 --- a/src/App.vue +++ b/src/App.vue @@ -22,6 +22,21 @@ export default { body{ margin: 0; } +*{ + scrollbar-width: thin; + scrollbar-color: #42b983 #2220; +} +*::-webkit-scrollbar { + width: 0.5rem; + height: 0.5rem; +} +*::-webkit-scrollbar-track { + background: none; +} +*::-webkit-scrollbar-thumb { + background-color: #42b983; + border-radius: 0.25rem; +} #app { font-family: Avenir, Helvetica, Arial, sans-serif; position: absolute; diff --git a/src/components/chatInformation.vue b/src/components/chatInformation.vue index e5775ce..6f2d898 100644 --- a/src/components/chatInformation.vue +++ b/src/components/chatInformation.vue @@ -1,27 +1,29 @@