Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins. git.anhgelus.world/anhgelus/dotfiles
void niri fish neovim nvim vim dotfiles linux
1
fork

Configure Feed

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

feat(extensions): better tangled PR style

+53 -2
+53 -2
extensions/stylus/tangled.org.css
··· 4 4 --gap-text: 0.75rem; 5 5 6 6 --tw-prose-invert-body: #e0e3e9; 7 + 8 + --content-width: 750px; 7 9 } 8 10 9 11 .max-w-screen-lg { ··· 11 13 } 12 14 13 15 code { 14 - font-family: monospace!important; 16 + font-family: ui-monospace, monospace!important; 15 17 font-size: 14px!important; 16 18 line-height: 1.4em!important; 17 19 } 18 20 19 21 section article { 20 22 display: block; 21 - max-width: 750px; 23 + max-width: var(--content-width); 22 24 margin: 0 auto; 23 25 24 26 font-size: 18px; ··· 40 42 p { margin: 0; } 41 43 } 42 44 } 45 + 46 + div:has(> #subs) { 47 + display: grid; 48 + grid-template: 49 + "a b c" 50 + ". . e"; 51 + row-gap: 1rem; 52 + } 53 + 54 + #files { 55 + grid-area: a; 56 + max-width: 30vw!important; 57 + padding-bottom: 0; 58 + } 59 + 60 + #resize-files { 61 + grid-area: b; 62 + } 63 + 64 + #diff-files { 65 + position: static; 66 + grid-area: c; 67 + padding-bottom: 0; 68 + } 69 + 70 + #resize-subs { 71 + display: none; 72 + } 73 + 74 + #subs { 75 + position: static; 76 + grid-area: e; 77 + width: 100%!important; 78 + max-width: 100%!important; 79 + max-height: 100%!important; 80 + 81 + > details > div { 82 + max-height: 100%!important; 83 + } 84 + 85 + .group\/comments { 86 + max-width: var(--content-width); 87 + margin: 0 auto; 88 + 89 + > div > div { 90 + margin-right: 0; 91 + } 92 + } 93 + }