Files
FixIt/assets/scss/pages/shared/_patch.scss
T
Cell 47247e01c5 refactor(assets): split SCSS into per-layout CSS bundles (#789)
- Restructure pages/ directory: shared/, posts/, specials/ modules
- Add per-layout entry points (home, posts, archives, search, friends, link)
- Include 404 and offline styles in main bundle
- Consolidate scss-vars.html with Internal and Appearance categories
- Simplify _variables.scss with @forward "hugo:vars"
- Extract CSS loading logic to base/head/css.html
- Update [params.appearance] with all configurable values
2026-06-23 17:19:51 +08:00

32 lines
501 B
SCSS

// Resolve style conflicts between third-party plugins
@use "variables" as *;
@keyframes #{$prefix}pulse {
from {
scale: 1 1 1;
}
50% {
scale: 1.05 1.05 1.05;
}
to {
scale: 1 1 1;
}
}
.animate__pulse {
-webkit-animation-name: #{$prefix}pulse !important;
animation-name: #{$prefix}pulse !important;
}
// fix ZenUML intersection height error
#zenuml-intersection-detector-container {
display: none;
}
// lightgallery
.lg-toolbar .lg-download:after {
color: #999;
}