mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-23 04:44:05 -06:00
This commit cleans up the code in the content page emitter by removing unnecessary comments that referenced an external issue. The functionality for dead link detection remains intact, ensuring clarity and maintainability of the code.
16 lines
328 B
SCSS
16 lines
328 B
SCSS
@use "./base.scss";
|
|
|
|
// put your custom CSS here!
|
|
// Dead link styling - links to missing pages
|
|
.dead-link {
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
color: #d97706;
|
|
background-color: var(--lightgray);
|
|
padding: 0 0.1rem;
|
|
border-radius: 5px;
|
|
line-height: 1.4rem;
|
|
cursor: default;
|
|
}
|