Iceshrimp.NET/Iceshrimp.Frontend/Components/EmojiPicker.razor.css
2024-07-03 00:53:16 +02:00

25 lines
552 B
CSS

.emoji-picker {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(2.5rem, 1fr));
grid-template-rows: repeat(auto-fill, minmax(2.5rem, 1fr));
position: absolute;
background-color: var(--foreground-color);
border: var(--highlight-color) solid 0.1rem;
padding: 1rem;
border-radius: 1rem;
min-width: 15rem;
min-height: 10rem;
overflow: scroll;
z-index: 100;
top: 2.5rem;
left: -6rem;
}
.emoji {
> img {
object-fit: cover;
height: 2rem;
width: 2rem;
}
}