[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

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

fix: add width property to code-lines container (#193)

authored by

Mikołaj Misztal and committed by
GitHub
f200b39f 6e1fc969

+1 -1
+1 -1
app/components/CodeViewer.vue
··· 82 82 <!-- Code content --> 83 83 <div class="code-content flex-1 overflow-x-auto min-w-0"> 84 84 <!-- eslint-disable vue/no-v-html -- HTML is generated server-side by Shiki --> 85 - <div ref="codeRef" class="code-lines" v-html="html" /> 85 + <div ref="codeRef" class="code-lines w-fit" v-html="html" /> 86 86 <!-- eslint-enable vue/no-v-html --> 87 87 </div> 88 88 </div>