fix(grfn/bbbg): Fix attendee list styling on non-mobile

Change-Id: I0b9671dd7e43cf25e8313a10e31b1f19cf897371
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4682
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: grfn <grfn@gws.fyi>
This commit is contained in:
Griffin Smith 2021-12-26 14:46:42 -05:00 committed by grfn
parent 4a84b4af26
commit d0e9dc8d70
2 changed files with 12 additions and 3 deletions

View file

@ -102,8 +102,7 @@
[:th "Meetup Name"]
[:th "Discord Name"]
[:th "Signed In"]
[:th "Last Vaccination Check"]
[:th "Notes"]]
[:th "Last Vaccination Check"]]
[:tbody
(for [attendee attendees]
[:tr

View file

@ -52,6 +52,12 @@
:max-width mobile-width}
[:& rules]))
(defn not-mobile [& rules]
(at-media
{:screen true
:min-width mobile-width}
[:& rules]))
;;;
@ -321,7 +327,11 @@
[:.attendee-name
{:font-weight "bold"
:margin-bottom "0.9rem"}])])
:margin-bottom "0.9rem"}])
(not-mobile
[:.mobile-label
{:display :none}])])
(defstyles events
[:.events-list