Fix chromium popup height

This commit is contained in:
bytedream 2023-11-17 16:25:29 +01:00
parent 3aca863a4b
commit 76a5bac7fd
2 changed files with 4 additions and 4 deletions

View File

@ -127,8 +127,8 @@
background-color: #2b2a33;
color: white;
font-weight: bold;
overflow-x: hidden;
overflow-y: auto;
margin: 0;
padding: 0 8px;
}
#bug-notice {

View File

@ -1,10 +1,10 @@
<!doctype html>
<html lang="en">
<html style="width: fit-content; height: 500px; overflow-y: hidden" lang="en">
<head>
<meta charset="UTF-8" />
<title>Stream Bypass</title>
</head>
<body style="width: fit-content; height: 500px">
<body style="width: fit-content; height: 500px; overflow-y: scroll">
<script type="module">
import Popup from '~/entries/popup/Popup.svelte';