MY brain is fried and fired || Patrick helped me on the drpodown issues --> none left for the moment

This commit is contained in:
sageTheDM 2024-09-27 14:56:46 +02:00
parent 7e85c36ba8
commit 5dd5b939df
4 changed files with 130 additions and 65 deletions

View file

@ -109,6 +109,20 @@
transition: background 0.3s;
}
/* Close button positioning */
.apply {
background: var(--close-button-color); /* Use variable for close button color */
color: white; /* Use white for text color */
border: none;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
position: absolute; /* Position the button absolutely */
top: 50px; /* Distance from the top */
right: 10px; /* Distance from the right */
transition: background 0.3s;
}
.close-popup:hover {
background: darkred; /* Optional hover effect */
}