File size: 412 Bytes
6d2b1e6 335df31 6d2b1e6 335df31 6d2b1e6 335df31 6d2b1e6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /* Custom styles that can't be done with Tailwind */
iframe {
background-color: #f8fafc;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.flex-col {
flex-direction: column;
}
iframe {
height: 300px;
}
}
/* Animation for frame loading */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
iframe {
animation: fadeIn 0.3s ease-in-out;
} |