Skip to content

Commit a9b9fd1

Browse files
committed
Feat: table label grid
1 parent fdf421f commit a9b9fd1

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

src/app/[...slug]/page.module.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150
margin: 2rem 0;
151151
}
152152

153+
/* MathJax / Katex adjustments if needed */
153154
/* MathJax / Katex adjustments if needed */
154155
.content .katex-display {
155156
padding: 1rem;
@@ -159,6 +160,31 @@
159160
overflow-y: hidden;
160161
}
161162

163+
/* Table Styles */
164+
.content table {
165+
width: 100%;
166+
border-collapse: collapse;
167+
margin: 2rem 0;
168+
font-size: 0.95rem;
169+
}
170+
171+
.content th,
172+
.content td {
173+
padding: 0.75rem 1rem;
174+
border: 1px solid var(--glass-border);
175+
text-align: left;
176+
}
177+
178+
.content th {
179+
background-color: rgba(150, 150, 150, 0.1);
180+
/* Light gray header */
181+
font-weight: 600;
182+
}
183+
184+
.content tr:hover {
185+
background-color: rgba(150, 150, 150, 0.05);
186+
}
187+
162188
@media (max-width: 768px) {
163189
.postContainer {
164190
padding: 2rem;

0 commit comments

Comments
 (0)