feat(greeting): Initial Custom Events Implementation

This commit is contained in:
alexsparkes
2024-03-22 01:35:24 +00:00
parent a9f3992d2c
commit c1cba4dd5e
4 changed files with 152 additions and 2 deletions

View File

@@ -149,6 +149,27 @@ table {
padding: 25px;
justify-content: space-between;
input[type="number"] {
@include themed() {
background: t($modal-sidebar);
box-shadow: t($boxShadow);
color: t($color);
}
text-align: center;
border-radius: 12px;
height: 40px;
font-size: 1rem;
display: flex;
align-items: center;
flex-flow: row;
justify-content: center;
gap: 20px;
transition: 0.5s;
cursor: pointer;
border: 0;
max-width: 40px;
}
@include themed {
background: t($modal-sidebar);
border-radius: t($borderRadius);
@@ -202,3 +223,10 @@ table {
flex-flow: column;
gap: 25px;
}
.eventDateControl {
display: flex !important;
flex-flow: column !important;
gap: 5px !important;
text-align: center !important;
}