commit 34fab2ce5e996734110f7f085f4b7ef187730166
parent 283218fb82b562937e09b37ac0ceda4b284199b6
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date: Sat, 8 Jun 2024 21:30:55 +0200
fix: increase max width to 1280
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/assets/style.css b/assets/style.css
@@ -11,6 +11,7 @@
--hl1: #8c90d4;
--del: #db4325;
--add: #006164;
+ --max-width: 1280px;
}
/* Bright Mode */
@@ -165,7 +166,7 @@ pre a.d:hover {
#content {
width: 100%;
- max-width: 850px;
+ max-width: var(--max-width);
overflow-x: auto;
margin-left: auto;
margin-right: auto;
@@ -176,7 +177,7 @@ body > table:nth-child(1) {
margin-left: auto;
margin-right: auto;
width: 100%;
- max-width: 850px;
+ max-width: var(--max-width);
}
/* Hide icon and empty cells in headline */