mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
09e08d0772
**Breaking changes**: 1. Legacy custom style/script files are no longer loaded automatically. 2. Users must migrate custom files to: - `custom.scss` - `override.scss` - `_variables.scss` - `assets/js/custom.js` **Migration guide**: 1. Move `assets/css/_custom.scss` to `assets/scss/custom.scss`. 2. Move `assets/css/_override.scss` to `assets/scss/override.scss`. 3. Keep variables in `assets/scss/_variables.scss`. 4. Move `assets/js/_custom.js` to `assets/js/custom.js`. 5. Rebuild site and verify no deprecation warnings remain.
26 lines
459 B
SCSS
26 lines
459 B
SCSS
/* Resolve style conflicts between third-party plugins */
|
|
|
|
@keyframes #{$prefix}pulse {
|
|
from {
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
|
|
50% {
|
|
transform: scale3d(1.05, 1.05, 1.05);
|
|
}
|
|
|
|
to {
|
|
transform: scale3d(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;
|
|
}
|