Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update GIPHY embed structure for better responsiveness #724

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion blog/dec-quiet-period-24.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,23 @@ tags: [news]

The Electron project will pause for the month of December 2024, then return to full speed in January 2025.

<iframe src="https://giphy.com/embed/3otPoSDQczp1s9kVAQ" width="480" height="259" frameBorder="0" class="giphy-embed" allowFullScreen></iframe><p><a href="https://giphy.com/gifs/filmeditor-disney-pixar-3otPoSDQczp1s9kVAQ">via GIPHY</a></p>
<div style={{
position: "relative",
paddingBottom: "54%",
height: 0,
overflow: "hidden",
maxWidth: "100%",
height: "auto"
}}>
<iframe src="https://giphy.com/embed/3otPoSDQczp1s9kVAQ" width="480" height="259" frameBorder="0" class="giphy-embed" allowFullScreen style={{
position: "absolute",
top: 0,
left: 0,
width: "100%",
height: "100%"
}}></iframe>
</div>
<p><a href="https://giphy.com/gifs/filmeditor-disney-pixar-3otPoSDQczp1s9kVAQ">via GIPHY</a></p>

---

Expand Down
Loading