2025-04-22 16:27:24 +02:00

20 lines
502 B
CSS
Executable File

.history-container{
max-width: 45em;
margin: auto;
}
/* Custom style for the close button */
.custom-close {
background-color: red; /* Red background */
border: none; /* Remove border */
width: 30px; /* Adjust width if needed */
height: 30px; /* Adjust height if needed */
color: white; /* White X color */
border-radius: 50%; /* Make the button round */
}
.custom-close:focus {
outline: none; /* Remove the outline when focused */
}