Skip to content

Commit 517e40d

Browse files
committed
Fix footer theme
1 parent f09c27a commit 517e40d

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

index.html

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -367,25 +367,38 @@
367367
}
368368

369369
.tsd-footer {
370-
background-color: var(--light-color-panel);
371-
border-top: 1px solid var(--light-color-panel-divider);
370+
background-color: var(--dark-color-panel);
371+
border-top: 1px solid var(--dark-color-panel-divider);
372372
padding: 20px 0;
373373
margin-top: 60px;
374374
text-align: center;
375375
font-size: 14px;
376-
color: var(--light-color-text-aside);
376+
color: var(--dark-color-text-aside);
377377
}
378378

379379
html[data-theme="light"] .tsd-footer {
380-
background-color: var(--dark-color-panel);
381-
border-top-color: var(--dark-color-panel-divider);
382-
color: var(--dark-color-text-aside);
380+
background-color: var(--light-color-panel);
381+
border-top-color: var(--light-color-panel-divider);
382+
color: var(--light-color-text-aside);
383383
}
384384

385385
.tsd-footer .container {
386386
padding: 0 20px;
387387
}
388388

389+
.tsd-footer a {
390+
color: var(--dark-color-link);
391+
text-decoration: none;
392+
}
393+
394+
html[data-theme="light"] .tsd-footer a {
395+
color: var(--light-color-link);
396+
}
397+
398+
.tsd-footer a:hover {
399+
text-decoration: underline;
400+
}
401+
389402
.tsd-search {
390403
position: fixed;
391404
top: 0;

0 commit comments

Comments
 (0)