Fixed some styles.

This commit is contained in:
Mike Cao 2024-08-20 01:15:33 -07:00
parent 5aba9acb81
commit da28fe8fe9
5 changed files with 8 additions and 8 deletions

View File

@ -38,7 +38,7 @@
} }
.back { .back {
align-self: start; align-self: flex-start;
margin: 0; margin: 0;
} }
@ -49,7 +49,7 @@
.dropdown { .dropdown {
display: flex; display: flex;
width: 200px; width: 200px;
align-self: end; align-self: flex-end;
} }
.menu { .menu {

View File

@ -6,7 +6,7 @@
} }
.table { .table {
align-self: start; align-self: flex-start;
} }
.link:hover { .link:hover {

View File

@ -6,7 +6,7 @@
} }
.table { .table {
align-self: start; align-self: flex-start;
} }
.link:hover { .link:hover {

View File

@ -13,8 +13,8 @@
.day { .day {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: start; align-items: flex-start;
justify-content: start; justify-content: flex-start;
gap: 1px; gap: 1px;
position: relative; position: relative;
} }
@ -26,7 +26,7 @@
height: 20px; height: 20px;
margin: auto; margin: auto;
border-radius: 100%; border-radius: 100%;
align-items: start; align-items: flex-start;
} }
.hour { .hour {

View File

@ -27,6 +27,6 @@
} }
.nav { .nav {
justify-content: end; justify-content: flex-end;
} }
} }