(READ ONLY) Margin is an open annotation layer for the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
99
fork

Configure Feed

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

hide layout button on mobile and ios shortcut for not signed in users

scanash00 4dc85aab 455f9fd2

+14 -1
+13
web/src/components/navigation/MobileNav.tsx
··· 172 172 <Settings size={20} /> 173 173 <span>Settings</span> 174 174 </Link> 175 + 176 + <div className="h-px bg-surface-200 dark:bg-surface-700 my-2" /> 177 + 178 + <a 179 + href="https://www.icloud.com/shortcuts/21c87edf29b046db892c9e57dac6d1fd" 180 + target="_blank" 181 + rel="noopener noreferrer" 182 + className="flex items-center gap-3 p-3 rounded-xl hover:bg-surface-100 dark:hover:bg-surface-800 transition-colors text-surface-700 dark:text-surface-200" 183 + onClick={closeMenu} 184 + > 185 + <AppleIcon size={20} /> 186 + <span>iOS Shortcut</span> 187 + </a> 175 188 </> 176 189 )} 177 190 </div>
+1 -1
web/src/views/core/Feed.tsx
··· 249 249 ); 250 250 })} 251 251 <div className="ml-auto"> 252 - <LayoutToggle /> 252 + <LayoutToggle className="hidden sm:inline-flex" /> 253 253 </div> 254 254 </div> 255 255 </div>