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