Skip to content

Commit

Permalink
refactor: clip html page overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
techemmy committed Sep 17, 2024
1 parent e38f370 commit c0ce960
Showing 1 changed file with 15 additions and 16 deletions.
31 changes: 15 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sync Swap Parallel</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
</head>

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sync Swap Parallel</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
</head>

<body data-theme="light">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

<body data-theme="light">
<div id="root" style="overflow-x: clip"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>

0 comments on commit c0ce960

Please sign in to comment.