User avatar
ava@soon39c3:~cursor_blinkingverifiedlesbian @star@amazonawaws.com
1h
idk where to share this properly, idk what im doing, but if you use iceshrimp.net and the corresponding web ui, you can add the following to ur stylus extension to make it so that reactions emojis are enlarged on hover:
:root {
    --reaction-zoom: 150;
}

button.reaction {
    transition: transform 0.3s ease-in-out;
    transform: scale(1);
}

button.reaction:hover {
    transform: scale(calc((var(--reaction-zoom) + 60) / 100));
}

button.reaction img {
        transition: transform 0.3s ease-in-out;
        transform: scale(1);
    }
    
button.reaction:hover img {
    transform: scale(calc((var(--reaction-zoom) + 25) / 100));
}