fix: markdown table style and max width

This commit is contained in:
tdgao
2026-04-14 20:41:59 -06:00
parent aa7819f6ff
commit 83852e5719
2 changed files with 13 additions and 2 deletions
@@ -62,6 +62,8 @@
.normal-page__content {
grid-area: content;
width: 100%;
min-width: 0;
}
.normal-page__header {
@@ -116,6 +118,8 @@
}
.normal-page__content {
width: 100%;
min-width: 0;
max-width: calc(80rem - 18.75rem - 1.5rem);
//overflow-x: hidden;
}
@@ -164,6 +168,8 @@
.normal-page__content {
grid-area: content;
width: 100%;
min-width: 0;
max-width: calc(80rem - 18.75rem - 1.5rem);
//overflow-x: hidden;
}
+7 -2
View File
@@ -906,10 +906,15 @@ a:not(.no-click-animation),
border-spacing: 0;
line-height: 1.5;
border: 0.1rem solid var(--color-button-bg);
border-radius: var(--radius-sm);
border-radius: var(--radius-xl);
th {
font-weight: 600;
background-color: var(--surface-3);
}
tr {
background-color: var(--surface-1-5);
}
td,
@@ -918,7 +923,7 @@ a:not(.no-click-animation),
}
tr:nth-child(2n) {
background-color: var(--color-accent-contrast);
background-color: var(--surface-1);
}
td:not(:last-of-type),