fix(desktop): code tab padding

This commit is contained in:
Adam 2025-11-07 13:14:57 -06:00
parent 89922a8598
commit 7adbc3ad44
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -791,14 +791,14 @@ export default function Page() {
},
)
return (
<Tabs.Content value={tab} class="select-text">
<Tabs.Content value={tab} class="select-text mt-3">
<Switch>
<Match when={file()}>
{(f) => (
<Code
file={{ name: f().path, contents: f().content?.content ?? "" }}
overflow="scroll"
class="pt-3 pb-40"
class="pb-40"
/>
)}
</Match>