mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-03 11:11:27 +08:00
31 lines
474 B
SCSS
31 lines
474 B
SCSS
.mind-popup-response {
|
|
/* GPU acceleration */
|
|
transform: translateZ(0);
|
|
will-change: transform;
|
|
|
|
/* Optimize repaints */
|
|
contain: content;
|
|
|
|
.block-editor-block-preview__content,
|
|
.block-editor-block-preview__content iframe {
|
|
max-height: none !important;
|
|
}
|
|
}
|
|
|
|
@keyframes mind-cursor-blink {
|
|
0%,
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
/* Optimize for mobile */
|
|
@media (max-width: 768px) {
|
|
.mind-popup-response {
|
|
contain: strict;
|
|
height: 100%;
|
|
}
|
|
}
|