Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
4 changes: 0 additions & 4 deletions public/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,6 @@
margin-bottom: 16px;
}

#sponsorBlockPopupContainer iframe {
width: 100%;
}

/*
* Disable popup max height when displayed in-page (content.ts)
*/
Expand Down
2 changes: 1 addition & 1 deletion src/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2128,7 +2128,7 @@ function openInfoMenu() {
popup.id = "sponsorBlockPopupContainer";

const frame = document.createElement("iframe");
frame.width = "374";
frame.width = "100%";
frame.height = "500";
frame.style.borderRadius = "12px";
frame.addEventListener("load", async () => {
Expand Down
Loading