mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
d51dfd35e8
* feat(responsive): add responsive breakpoints and mixin for media queries * refactor: print styles and add media query support * refactor(responsive): enhance responsive styles across various components
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;
|
|
}
|