wpmind/src/editor/popup/components/ai-response/style.scss

32 lines
474 B
SCSS
Raw Normal View History

2024-12-09 14:02:26 +03:00
.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;
}
2024-12-09 14:02:26 +03:00
}
@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%;
}
}