docs[patch]: fix zoom (#14786)

not sure why quarto is removing divs
This commit is contained in:
Erick Friis
2023-12-15 17:46:12 -08:00
committed by GitHub
parent 34e6f3ff72
commit 133971053a
2 changed files with 20 additions and 63 deletions

View File

@@ -10,7 +10,7 @@ export function ColumnContainer({children}) {
export function Column({children}) {
return (
<div style={{ flex: "1 0 300px", padding: "10px", overflowX: "clip" }}>
<div style={{ flex: "1 0 300px", padding: "10px", overflowX: "clip", zoom: '80%' }}>
{children}
</div>
)