Fixed Textbox Not Appearing

This commit is contained in:
kashi618 2024-11-19 12:19:37 +00:00
parent 6e2384a001
commit c1d71da4f9

View file

@ -15,6 +15,9 @@ If your plugin does not need CSS, delete this file.
position: fixed;
bottom: 30px;
right: 30px;
display: flex;
flex-direction: column;
align-items: flex-end;
}
.gemmy-container img {
@ -23,10 +26,14 @@ If your plugin does not need CSS, delete this file.
border-radius: var(--gemmy-size);
}
.gemmy-tooltip {
.gemmy-container[aria-label]::before {
--background-modifier-message: #FFFFCB;
content: attr(aria-label);
color: #202020;
font-size: var(--font-ui-medium);
border-radius: 20px;
padding: var(--size-4-3) var(--size-4-6);
}
width: 150px;
background: var(--background-modifier-message);
}