a tool for shared writing and social publishing
0
fork

Configure Feed

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

lil typos

celine 24b0ad84 4e80ae0c

+10 -7
+2 -2
app/lish/[did]/[publication]/[rkey]/Interactions/InteractionDrawer.tsx
··· 36 36 return ( 37 37 <> 38 38 <SandwichSpacer noWidth /> 39 - <div className="snap-center h-full flex z-10 shrink-0 w-[calc(var(--page-width-units)-6px)] sm:w-[calc(var(--page-width-units))]"> 39 + <div className="snap-center h-full flex z-10 shrink-0 sm:max-w-prose sm:w-full w-[calc(100vw-12px)]"> 40 40 <div 41 41 id="interaction-drawer" 42 - className={`opaque-container h-full w-full px-3 sm:px-4 pt-2 sm:pt-3 pb-6 overflow-scroll -ml-[1px] ${props.showPageBackground ? "rounded-l-none! rounded-r-lg!" : "rounded-lg! sm:mx-2"}`} 42 + className={`opaque-container h-full w-full px-3 sm:px-4 pt-2 sm:pt-3 pb-6 overflow-scroll ${props.showPageBackground ? "rounded-l-none! rounded-r-lg! -ml-[1px]" : "rounded-lg! sm:ml-4"}`} 43 43 > 44 44 {drawer.drawer === "quotes" ? ( 45 45 <Quotes {...props} quotesAndMentions={filteredQuotesAndMentions} />
+4 -1
components/Pages/PublicationMetadata.tsx
··· 118 118 {tags && ( 119 119 <> 120 120 <AddTags /> 121 - <Separator classname="h-4!" /> 121 + {pubRecord?.preferences?.showMentions || 122 + pubRecord?.preferences?.showComments ? ( 123 + <Separator classname="h-4!" /> 124 + ) : null} 122 125 </> 123 126 )} 124 127 {pubRecord?.preferences?.showMentions && (
+2 -2
components/ThemeManager/Pickers/PageWidthSetter.tsx
··· 89 89 <div 90 90 className={`w-full cursor-pointer ${selectedPreset === "default" ? "text-[#595959]" : "text-[#969696]"}`} 91 91 > 92 - default (624px) 92 + default ({defaultPreset}px) 93 93 </div> 94 94 </Radio> 95 95 </label> ··· 111 111 <div 112 112 className={`w-full cursor-pointer ${selectedPreset === "wide" ? "text-[#595959]" : "text-[#969696]"}`} 113 113 > 114 - wide (756px) 114 + wide ({widePreset}px) 115 115 </div> 116 116 </Radio> 117 117 </label>
+2 -2
components/ThemeManager/PubPickers/PubPageWidthSetter.tsx
··· 76 76 <div 77 77 className={`w-full cursor-pointer ${selectedPreset === "default" ? "text-[#595959]" : "text-[#969696]"}`} 78 78 > 79 - default (624px) 79 + default ({defaultPreset}px) 80 80 </div> 81 81 </Radio> 82 82 </label> ··· 98 98 <div 99 99 className={`w-full cursor-pointer ${selectedPreset === "wide" ? "text-[#595959]" : "text-[#969696]"}`} 100 100 > 101 - wide (756px) 101 + wide ({widePreset}px) 102 102 </div> 103 103 </Radio> 104 104 </label>