a tool for shared writing and social publishing
0
fork

Configure Feed

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

fixed color of image adder in block toolbar

celine c44612f3 1d015db9

+4 -5
+1 -1
components/BlockOptions.tsx
··· 154 154 155 155 return ( 156 156 <div 157 - className={`max-w-sm flex gap-2 rounded-md ${linkOpen ? "text-secondary" : " text-tertiary"}`} 157 + className={`max-w-sm flex gap-2 hover:text-accent rounded-md ${linkOpen ? "text-secondary" : " text-tertiary"}`} 158 158 > 159 159 <button 160 160 onMouseDown={(e) => e.preventDefault()}
+3 -4
components/Toolbar/index.tsx
··· 253 253 setLastUsedHighlight: (color: "1" | "2" | "3") => void; 254 254 }) => { 255 255 return ( 256 - <div className="flex w-full justify-between items-center gap-4"> 256 + <div className="flex w-full justify-between items-center gap-4 text-secondary"> 257 257 <div className="flex items-center gap-[6px]"> 258 258 <ToolbarButton onClick={() => props.onClose()}> 259 259 <HighlightSmall /> ··· 357 357 className="blockOptionsImage hover:cursor-pointer flex place-items-center" 358 358 onMouseDown={(e) => e.preventDefault()} 359 359 > 360 - <div className="text-tertiary hover:text-accent "> 361 - <BlockImageSmall /> 362 - </div> 360 + <BlockImageSmall /> 361 + 363 362 <div className="hidden"> 364 363 <input 365 364 type="file"