a tool for shared writing and social publishing

Merge pull request #204 from jendowns/jendowns-patch-1

Icon links for RSS & Create new pub: add text for screen readers, add aria-hidden to svgs

authored by schlage.town and committed by

GitHub c6c51693 b1f1631b

+4 -2
+2 -1
app/home/Publications.tsx
··· 28 28 href={"/lish/createPub"} 29 29 className="pubListCreateNew text-accent-contrast font-bold hover:text-accent-contrast" 30 30 > 31 - <AddTiny /> 31 + <span className="sr-only">Create new publication</span> 32 + <AddTiny aria-hidden /> 32 33 </SpeedyLink> 33 34 </div> 34 35 <PublicationList publications={identity.publications} />
+2 -1
app/lish/Subscribe.tsx
··· 218 218 setSuccessModalOpen={setSuccessModalOpen} 219 219 /> 220 220 <a href={`${props.base_url}/rss`} className="flex" target="_blank"> 221 - <RSSSmall className="self-center" /> 221 + <span className="sr-only">Subscribe to RSS</span> 222 + <RSSSmall className="self-center" aria-hidden /> 222 223 </a> 223 224 </div> 224 225 </div>