Skip to content

Commit

Permalink
Fix full screen issue on aurora
Browse files Browse the repository at this point in the history
  • Loading branch information
nothans committed Oct 31, 2024
1 parent 3d080c9 commit 4159eb7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions aurora.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@
<meta name="description" content="A widget that displays a dynamic aurora inspired by the current CheerLights color using the CheerLights JavaScript library." />

<style>
body {
cursor: pointer;
html, body {
width: 100%;
height: 100vh;
margin: 0;
padding: 0;
overflow: hidden;
}

body {
cursor: pointer;
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, var(--aurora-color) 100%);
position: relative;
overflow: hidden;
}

.aurora {
Expand Down

0 comments on commit 4159eb7

Please sign in to comment.