mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 09:07:45 +01:00
Fix help page showing small options page
This commit is contained in:
parent
bd429f02a7
commit
ad5248f65e
2 changed files with 8 additions and 0 deletions
|
@ -66,6 +66,12 @@ body {
|
|||
display: inline-block;
|
||||
}
|
||||
|
||||
#options.embed {
|
||||
max-width: 100%;
|
||||
text-align: left;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.switch-container {
|
||||
content: attr(label-name);
|
||||
position: absolute;
|
||||
|
|
|
@ -18,6 +18,8 @@ async function init() {
|
|||
for (const element of document.getElementsByClassName("titleBar")) {
|
||||
element.classList.add("hidden");
|
||||
}
|
||||
|
||||
document.getElementById("options").classList.add("embed");
|
||||
}
|
||||
|
||||
if (!Config.configListeners.includes(optionsConfigUpdateListener)) {
|
||||
|
|
Loading…
Reference in a new issue