a tool for shared writing and social publishing
0
fork

Configure Feed

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

little styling tweaks, like very small

celine 2eea1e63 8d110ff7

+12 -10
+8 -8
app/globals.css
··· 70 70 } 71 71 72 72 a { 73 - color: inherit; 74 - text-decoration: none; 73 + @apply text-accent-contrast; 74 + @apply hover:cursor-pointer; 75 + 76 + @apply no-underline; 77 + } 78 + 79 + a:hover { 80 + @apply underline; 75 81 } 76 82 77 83 pre { ··· 96 102 /* Hide scrollbar for Chrome, Safari and Opera */ 97 103 .no-scrollbar::-webkit-scrollbar { 98 104 display: none; 99 - } 100 - 101 - a { 102 - @apply text-accent-contrast; 103 - @apply hover:cursor-pointer; 104 - text-decoration: underline; 105 105 } 106 106 107 107 .highlight {
+2 -1
components/Blocks/BlockOptions.tsx
··· 253 253 /> 254 254 <div className="flex items-center gap-3 "> 255 255 <button 256 - className="hover:text-accent-contrast" 256 + disabled={!linkValue || linkValue === ""} 257 + className="hover:text-accent-contrast disabled:text-border" 257 258 onMouseDown={(e) => { 258 259 e.preventDefault(); 259 260 if (!linkValue) return;
+2 -1
components/Toolbar/LinkButton.tsx
··· 120 120 */} 121 121 <div className="flex items-center gap-3"> 122 122 <button 123 - className="hover:text-accent-contrast -mr-6" 123 + disabled={!linkValue || linkValue === ""} 124 + className="hover:text-accent-contrast -mr-6 disabled:text-border" 124 125 onMouseDown={(e) => { 125 126 e.preventDefault(); 126 127 let editor = focusedEditor?.editor;