From c1d71da4f96decbd6f21310ebc6f5a3509a3a2f0 Mon Sep 17 00:00:00 2001 From: kashi618 Date: Tue, 19 Nov 2024 12:19:37 +0000 Subject: [PATCH] Fixed Textbox Not Appearing --- styles.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/styles.css b/styles.css index 44ff089..df8f0ce 100644 --- a/styles.css +++ b/styles.css @@ -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); + } + \ No newline at end of file