aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbsturztaube <me@absturztaube.ch>2019-12-09 22:16:51 +0100
committerAbsturztaube <me@absturztaube.ch>2019-12-09 22:16:51 +0100
commit7e3a4fa8ec183f8e04804938d713953aed6bec66 (patch)
tree468932d2349bca657466a5532ba9dd60f0da813a
parentf6d8f245e68c8a1f747af527f59670d88bde5c08 (diff)
fix invisible tab-switcher in emoji picker
-rw-r--r--src/components/sticker_picker/sticker_picker.vue28
1 files changed, 12 insertions, 16 deletions
diff --git a/src/components/sticker_picker/sticker_picker.vue b/src/components/sticker_picker/sticker_picker.vue
index 323855b9..7d6fdc24 100644
--- a/src/components/sticker_picker/sticker_picker.vue
+++ b/src/components/sticker_picker/sticker_picker.vue
@@ -37,22 +37,18 @@
.sticker-picker {
width: 100%;
position: relative;
- .tab-switcher {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- }
- .sticker-picker-content {
- .sticker {
- display: inline-block;
- width: 20%;
- height: 20%;
- img {
- width: 100%;
- &:hover {
- filter: drop-shadow(0 0 5px var(--link, $fallback--link));
+ .contents {
+ min-height: 250px;
+ .sticker-picker-content {
+ .sticker {
+ display: inline-block;
+ width: 20%;
+ height: 20%;
+ img {
+ width: 100%;
+ &:hover {
+ filter: drop-shadow(0 0 5px var(--link, $fallback--link));
+ }
}
}
}