diff --git a/Guestlist/Components/Pages/Guests.razor b/Guestlist/Components/Pages/Guests.razor index d6fb56c..cc63ef7 100644 --- a/Guestlist/Components/Pages/Guests.razor +++ b/Guestlist/Components/Pages/Guests.razor @@ -29,28 +29,30 @@ } +
+
+

Add guest

+
+
+ + +
+ +
+ + +
+ + +
+
+
+ +

Current Guests

+
-
-
-

Add guest

-
-
- - -
- -
- - -
- - -
-
-
- @if (GuestEntries is null) {
diff --git a/Guestlist/wwwroot/app.css b/Guestlist/wwwroot/app.css index b01089f..1f3650b 100644 --- a/Guestlist/wwwroot/app.css +++ b/Guestlist/wwwroot/app.css @@ -42,17 +42,20 @@ a, .btn-link { gap: 1rem; } +.guest-add-card, .admin-panel-grid > .card, .admin-panel-column > .card { border-radius: 8px; } +.guest-add-card, .guest-card-grid > .card, .admin-panel-grid > .card, .admin-panel-column > .card { transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease; } +.guest-add-card:focus-within, .guest-card-grid > .card:focus-within, .admin-panel-grid > .card:focus-within, .admin-panel-column > .card:focus-within { @@ -61,6 +64,7 @@ a, .btn-link { } @media (hover: hover) and (pointer: fine) { + .guest-add-card:hover, .guest-card-grid > .card:hover, .admin-panel-grid > .card:hover, .admin-panel-column > .card:hover { @@ -70,6 +74,10 @@ a, .btn-link { } } +.guest-add-card { + width: 100%; +} + .guest-card-grid > .card { flex: 0 1 auto; width: fit-content;