1
0

Fix: Wrong width

This commit is contained in:
Richard Dern 2024-04-27 22:10:06 +02:00
parent c9f783cd3c
commit e2b794b64e
2 changed files with 6 additions and 3 deletions

View File

@ -23,10 +23,11 @@ :root {
html,
body {
width: 100vw;
max-width: 100vw;
height: 100vh;
background-color: #030712;
color: #e4f1fe;
padding: 0 .5rem;
}
body {

View File

@ -87,7 +87,8 @@ #article-main {
.table-of-contents {
margin: 2rem auto;
line-height: 150%;
width: var(--design-width);
max-width: var(--design-width);
width: 100%;
font-size: .8em;
ol {
@ -104,7 +105,8 @@ #article-main {
> h4,
> h5,
> h6 {
width: var(--design-width);
max-width: var(--design-width);
width: 100%;
margin: 1rem auto;
text-align: left;
gap: .5rem;