mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-29 03:53:30 +08:00
Suggested from: https://katex.org/docs/issues.html, I have tested it adding a long equation and activating a phone user agent.
39 lines
864 B
SCSS
39 lines
864 B
SCSS
a {
|
|
text-decoration: none;
|
|
color: var(--accent-color);
|
|
|
|
&:hover {
|
|
color: var(--accent-color-darker);
|
|
}
|
|
|
|
&.link {
|
|
box-shadow: 0px -2px 0px rgba(var(--link-background-color), var(--link-background-opacity)) inset;
|
|
transition: all 0.3s ease;
|
|
|
|
&:hover {
|
|
box-shadow: 0px calc(-1rem * var(--article-line-height)) 0px rgba(var(--link-background-color), var(--link-background-opacity-hover)) inset;
|
|
}
|
|
}
|
|
}
|
|
|
|
.section-title {
|
|
text-transform: uppercase;
|
|
margin-top: 0;
|
|
margin-bottom: 10px;
|
|
display: block;
|
|
font-size: 1.6rem;
|
|
font-weight: bold;
|
|
color: var(--body-text-color);
|
|
|
|
a {
|
|
color: var(--body-text-color);
|
|
}
|
|
}
|
|
|
|
|
|
/* --- Make long KaTeX equations scrollable in the x-axis --- */
|
|
.katex-display>.katex {
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
}
|