diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-12-07 00:39:00 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-12-07 00:39:00 -0800 |
| commit | 41ea13a2000ab9beae019590e1155cd2f09d6719 (patch) | |
| tree | 7ff97c532043efb0835e76b492d8c8ba094326d5 | |
| parent | 59f9068bd64c0e93ff5ebe578116eba5323ab220 (diff) | |
fix iframe sizing
| -rw-r--r-- | pinapelz.moe/index.html | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/pinapelz.moe/index.html b/pinapelz.moe/index.html index 49143b0..99722cd 100644 --- a/pinapelz.moe/index.html +++ b/pinapelz.moe/index.html @@ -31,6 +31,26 @@ font-size: 12px; } } + + /* Fix iframe container constraints */ + .sidebar { + min-height: auto !important; + height: auto !important; + overflow: visible !important; + } + + .sidebar iframe { + display: block; + margin: 10px auto; + width: 100%; + max-width: 320px; + border: none; + } + + /* Ensure flex containers don't constrain height */ + .flex { + align-items: stretch; + } </style> </head> <body> @@ -149,7 +169,7 @@ </script> </section> <p id="quote" class="my-4"></p> - <iframe class="w-full max-w-xs h-48 mx-auto block" style="border:none" src="https://rubybulbs.net/neko.html"></iframe> + <iframe class="w-full max-w-xs h-48 mx-auto block" style="border:none; height: 300px; min-height: 250px;" src="https://rubybulbs.net/neko.html"></iframe> </div> <div class="content w-full xl:w-3/4"> |
