confirmation popup

This commit is contained in:
counterweight 2025-02-27 16:54:05 +01:00
parent 866a9c6417
commit ab9d502945
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
4 changed files with 125 additions and 1 deletions

View file

@ -14,9 +14,14 @@
.button-medium {
height: 3em;
padding: 1em;
padding: 0.5em 1em;
border-radius: 10px;
}
.top-notification-good {
top: 25px;
}
}
@media (min-width: 769px) {
@ -33,8 +38,41 @@
padding: 1em;
border-radius: 10px;
}
.top-notification-good {
top: 50px;
}
}
.top-notification-good {
border-radius: 10px;
background-color: rgb(9, 165, 9);
color: white;
font-weight: 800;
opacity: 0.8;
position: fixed;
padding: 20px;
display: flex;
justify-content: space-evenly;
align-items: center;
left: 50%;
transform: translateX(-50%);
}
.top-notification-good > * {
margin: 0 20px;
}
.top-notification-good > *:first-child {
margin-left: 0;
}
.top-notification-good > *:last-child {
margin-right: 0;
}
.top-notification-good img {
height: 50px;
}
.badges {
display: grid;
grid-template-columns: repeat(2, 1fr);