Skip to content

Commit 0e1a879

Browse files
committed
chore: update padding and margin syntax
1 parent a8afa29 commit 0e1a879

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Navigation.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
width: 100%;
4646
height: var(--navigation-height);
4747
top: 0;
48-
padding-inline: calc(var(--page-inline-inset) / 4);
48+
padding: 0 calc(var(--page-inline-inset) / 4);
4949
background-color: var(--background-color);
5050
border-bottom: var(--black-border);
5151
align-items: center;

src/pages/our-team.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const subteamKeys = Object.keys(team) as (keyof typeof team)[]
6060
}
6161

6262
section {
63-
padding-inline: var(--page-inline-inset);
63+
padding: 0 var(--page-inline-inset);
6464
scroll-margin-top: calc(var(--navigation-height) + 1rem);
6565
}
6666

0 commit comments

Comments
 (0)