atmo.rsvp
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

a11y fixes

Florian 2893666e 58e3f238

+7 -3
+7 -3
src/routes/(app)/+layout.svelte
··· 44 44 d="m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z" 45 45 /> 46 46 </svg> 47 + <span class="sr-only">search for events</span> 47 48 </a> 48 49 {#if user.isLoggedIn} 49 50 <Button href="/create" class="hidden sm:inline-flex">Create Event</Button> ··· 71 72 <Button 72 73 onclick={() => atProtoLoginModalState.show()} 73 74 variant="ghost" 74 - class="hidden sm:inline-flex">Create Event</Button 75 + class="hidden sm:inline-flex" 76 + > 77 + Create Event</Button 75 78 > 76 79 <Button 77 80 onclick={() => atProtoLoginModalState.show()} ··· 89 92 > 90 93 <path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" /> 91 94 </svg> 95 + <span class="sr-only">create event</span> 92 96 </Button> 93 97 <Button onclick={() => atProtoLoginModalState.show()}>Login</Button> 94 98 {/if} 95 99 </div> 96 100 </Navbar> 97 101 98 - <div class="pt-14"> 102 + <main class="pt-14"> 99 103 {@render children()} 100 - </div> 104 + </main> 101 105 102 106 <LoginModal /> 103 107