make separated EmojiPicker component, add Spinner to search emojis

This commit is contained in:
Milos Holba
2021-02-23 16:15:29 +01:00
parent 05f850ab2c
commit bf6cd34cf6
5 changed files with 602 additions and 513 deletions
+4 -3
View File
@@ -459,21 +459,22 @@
width: 18px;
height: 18px;
cursor: pointer;
}
::-webkit-scrollbar-thumb {
border: 6px solid white;
border: 6px solid transparent;
background: #7f7f7f;
border-radius: 25px;
background-clip: padding-box ;
}
}
@media (prefers-color-scheme: dark) {
.windows {
::-webkit-scrollbar-thumb {
border: 6px solid $dark_mode_background;
border: 6px solid transparent;
background: $dark_mode_foreground !important;
background-clip: padding-box !important ;
}
}
}