Skip to content

Commit

Permalink
Showcase Themes Configured
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Oct 28, 2024
1 parent 553c8e5 commit 3514d07
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"AppVersion": "24.10.21.0",
"Version": "1.0.0.2",
"Version": "1.0.0.3",
"Title": "Sliding Clock Black & White",
"Thumbnail": "thumbnail.jpg",
"Preview": "preview.gif",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,27 @@
margin: 0;
}

html {
* {
box-sizing: border-box;
user-select: none;
padding: 0;
margin: 0;
}

html, body {
overflow-y: hidden;
height: 100vh;
display: grid;
place-items: center;
}

body {
font-family: monospace;
font-size: 2rem;
min-height: 100vh;
display: grid;
overflow-y: hidden;
place-items: center;
background: linear-gradient(-45deg, #000000, #333333c2);
display: flex;
justify-content: center;
align-items: center;
}

.hr,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,20 @@
margin: 0;
}

html {
html, body {
overflow-y: hidden;
height: 100vh;
display: grid;
place-items: center;
}

body {
font-family: monospace;
font-size: 2rem;
min-height: 100vh;
display: grid;
overflow-y: hidden;
place-items: center;
background: linear-gradient(-45deg, #c4d2ef, #dfe6f6);
display: flex;
justify-content: center;
align-items: center;
}

.hr,
Expand Down

0 comments on commit 3514d07

Please sign in to comment.