diff --git a/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.module.css b/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.module.css index f71032ae..007fa7f1 100644 --- a/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.module.css +++ b/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.module.css @@ -38,7 +38,7 @@ } .back { - align-self: start; + align-self: flex-start; margin: 0; } @@ -49,7 +49,7 @@ .dropdown { display: flex; width: 200px; - align-self: end; + align-self: flex-end; } .menu { diff --git a/src/app/(main)/websites/[websiteId]/events/EventProperties.module.css b/src/app/(main)/websites/[websiteId]/events/EventProperties.module.css index 4f6a65ec..0b9c011d 100644 --- a/src/app/(main)/websites/[websiteId]/events/EventProperties.module.css +++ b/src/app/(main)/websites/[websiteId]/events/EventProperties.module.css @@ -6,7 +6,7 @@ } .table { - align-self: start; + align-self: flex-start; } .link:hover { diff --git a/src/app/(main)/websites/[websiteId]/sessions/SessionProperties.module.css b/src/app/(main)/websites/[websiteId]/sessions/SessionProperties.module.css index 4f6a65ec..0b9c011d 100644 --- a/src/app/(main)/websites/[websiteId]/sessions/SessionProperties.module.css +++ b/src/app/(main)/websites/[websiteId]/sessions/SessionProperties.module.css @@ -6,7 +6,7 @@ } .table { - align-self: start; + align-self: flex-start; } .link:hover { diff --git a/src/app/(main)/websites/[websiteId]/sessions/SessionsWeekly.module.css b/src/app/(main)/websites/[websiteId]/sessions/SessionsWeekly.module.css index ba15dfcc..35361643 100644 --- a/src/app/(main)/websites/[websiteId]/sessions/SessionsWeekly.module.css +++ b/src/app/(main)/websites/[websiteId]/sessions/SessionsWeekly.module.css @@ -13,8 +13,8 @@ .day { display: flex; flex-direction: column; - align-items: start; - justify-content: start; + align-items: flex-start; + justify-content: flex-start; gap: 1px; position: relative; } @@ -26,7 +26,7 @@ height: 20px; margin: auto; border-radius: 100%; - align-items: start; + align-items: flex-start; } .hour { diff --git a/src/components/common/Pager.module.css b/src/components/common/Pager.module.css index 880c1b40..c9330c32 100644 --- a/src/components/common/Pager.module.css +++ b/src/components/common/Pager.module.css @@ -27,6 +27,6 @@ } .nav { - justify-content: end; + justify-content: flex-end; } }