Skip to content

Commit

Permalink
add
Browse files Browse the repository at this point in the history
  • Loading branch information
anastvozniuk committed Nov 28, 2024
1 parent 159834c commit dbe87db
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
body {
margin: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 100vh;
}

.calendar {
Expand Down
4 changes: 4 additions & 0 deletions src/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ $max-width: $columns * $day-size + (($columns - 1) * $gap);

body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.calendar {
Expand Down

0 comments on commit dbe87db

Please sign in to comment.