Skip to content

Commit

Permalink
fix: min width #1
Browse files Browse the repository at this point in the history
  • Loading branch information
lisonge committed Sep 8, 2023
1 parent 7af7afa commit e9f04a1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/PopupApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ export default function PopupApp() {
return (
<Show
when={cspConfig.initialized()}
fallback={<div whitespace-nowrap>Loading...</div>}
fallback={
<div whitespace-nowrap min-w-100px>
Loading...
</div>
}
>
<div m-10px gap-15px flex flex-col>
<div m-10px gap-15px flex flex-col min-w-180px>
<NSwitch
label={<div w-125px>Disable HTTP CSP</div>}
checked={cspConfig.config().csp_http_disabled}
Expand Down

0 comments on commit e9f04a1

Please sign in to comment.