fix commitment, do not send duplicate invites, disable buttons on working

This commit is contained in:
2025-09-19 23:00:54 +02:00
parent 1f9f2dc21c
commit 6c10027122
7 changed files with 139 additions and 101 deletions
+60
View File
@@ -0,0 +1,60 @@
:root {
--bs-primary: #093e9a;
}
html,
body {
height: 100%;
}
body {
min-height: 100vh;
display: flex;
flex-direction: column;
background-color: #fffcf5;
}
.main-content {
flex: 1 0 auto;
}
footer {
flex-shrink: 0;
}
/* Override Bootstrap primary color classes */
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
background-color: #093e9a !important;
border-color: #093e9a !important;
}
.bg-primary {
background-color: #093e9a !important;
}
.border-primary {
border-color: #093e9a !important;
}
.text-primary {
color: #093e9a !important;
}
.container {
width: 673px;
max-width: 100%;
margin: 16px auto;
background: transparent;
border-radius: 1.25rem;
box-shadow: none;
padding: 16px;
}
.d-flex.gap-2>.btn.flex-fill,
.d-flex.gap-2>.btn {
flex: 1 1 0 !important;
min-width: 0;
}