Telegram Web K with changes to work inside I2P https://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

43 lines
662 B

.stickers-helper {
position: absolute !important;
bottom: calc(100% + 10px);
opacity: 0;
transition: opacity .2s ease-in-out;
overflow: hidden;
padding: 0 !important;
border-radius: 10px !important;
> .scrollable {
position: relative;
max-height: 220px;
min-height: var(--esg-sticker-size);
padding: 7px;
}
&-stickers {
display: flex;
flex-wrap: wrap;
}
&-sticker {
position: relative;
width: var(--esg-sticker-size);
height: var(--esg-sticker-size);
margin: 5px;
img {
width: 100%;
height: 100%;
}
}
&:not(.is-visible) {
display: none;
}
&.is-visible {
&:not(.backwards) {
opacity: 1;
}
}
}