diff --git a/css/theme/latex.css b/css/theme/latex.css index 46c2b28..e2ba673 100644 --- a/css/theme/latex.css +++ b/css/theme/latex.css @@ -173,6 +173,9 @@ body { body .layout-two-columns .layout-column-two { grid-area: column2; background: white; } + body .layout-two-columns .layout-column-one .layout-content, + body .layout-two-columns .layout-column-two .layout-content { + padding-top: calc(var(--margin) * var(--square)); } body .layout-two-previews { display: grid; min-height: 100vh; diff --git a/css/theme/source/latex.scss b/css/theme/source/latex.scss index 5035bbe..f06c7aa 100644 --- a/css/theme/source/latex.scss +++ b/css/theme/source/latex.scss @@ -252,6 +252,11 @@ body { grid-area: column2; background: white; } + + .layout-column-one .layout-content, + .layout-column-two .layout-content { + padding-top: calc(var(--margin) * var(--square)); + } } .layout-two-previews {