fix : css fix for stop message

This commit is contained in:
karthik 2025-09-18 12:32:28 +05:30
parent 1cfe2fd970
commit 7a11f65420

View File

@ -669,18 +669,17 @@
cursor: pointer; cursor: pointer;
} }
/* The visible stop-message box */
/* Style for the scrolling stop message */
.stop-message { .stop-message {
background-color: red; background-color: red;
color: white; color: white;
font-weight: bold; font-weight: bold;
padding: 2px 5px; padding: 2px 8px;
margin: 0 10px;
border-radius: 4px; border-radius: 4px;
display: inline-block; display: inline-flex;
max-width: 50%; align-items: center;
overflow: hidden; max-width: 70vw;
pointer-events: auto; /* allow marquee interactions if needed */
} }
.stop-message marquee { .stop-message marquee {