mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
20c0997cc5
- Restructure SCSS pages directory and rename shared to content - Ensure hr overflow visible for awesome-hr icon - Restore position relative on .page for absolute children
32 lines
501 B
SCSS
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;
|
|
}
|