Merge branch 'fix-sticker-height' into 'develop'

fix sticker picker height in emojo picker

See merge request pleroma/pleroma-fe!1022
This commit is contained in:
HJ 2019-12-15 17:59:27 +00:00
commit b739edb509

View file

@ -36,23 +36,23 @@
.sticker-picker { .sticker-picker {
width: 100%; width: 100%;
position: relative; .contents {
.tab-switcher { min-height: 250px;
position: absolute; .sticker-picker-content {
top: 0; display: flex;
bottom: 0; flex-wrap: wrap;
left: 0; padding: 0 4px;
right: 0; .sticker {
} display: flex;
.sticker-picker-content { flex: 1 1 auto;
.sticker { margin: 4px;
display: inline-block; width: 56px;
width: 20%; height: 56px;
height: 20%; img {
img { height: 100%;
width: 100%; &:hover {
&:hover { filter: drop-shadow(0 0 5px var(--link, $fallback--link));
filter: drop-shadow(0 0 5px var(--link, $fallback--link)); }
} }
} }
} }