Skip to content

Commit

Permalink
Fix bottom margin
Browse files Browse the repository at this point in the history
  • Loading branch information
PurelyAnecdotal authored Jan 25, 2024
1 parent f5bbe27 commit e641eea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/routes/(authed)/attendance/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<LoadingBanner show={!$attendanceLoaded} loadingMsg="Loading attendance..." />

{#if $attendance}
<Accordion class="m-4">
<Accordion class="p-4">
{#each $attendance.Absences.Absence ?? [] as absence}
<AccordionItem class="dark:">
<div slot="header">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(authed)/grades/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</Dropdown>
</div>

<ol class="space-y-4 mx-4">
<ol class="space-y-4 p-4 pt-0">
{#each $gradebook.Courses.Course ?? [] as course, index}
<li>
<Card
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(authed)/grades/[index]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@
</Popover>

<div transition:fade={{ duration: 200 }}>
<Tabs class="m-4 mb-0" contentClass="m-4">
<Tabs class="m-4 mb-0" contentClass="p-4">
<TabItem open title="All">
<Assignments
{assignments}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(authed)/messages/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<LoadingBanner show={!$messagesLoaded} loadingMsg="Loading messages..." />

{#if $messages}
<ol class="m-4 space-y-4">
<ol class="p-4 space-y-4">
{#each $messages as message}
<li>
<Card class="dark:text-white max-w-none flex flex-row items-center gap-2 flex-wrap">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(authed)/reportcards/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<LoadingBanner show={!$reportCardListLoaded} loadingMsg="Loading report cards..." />

{#if $reportCardList}
<ol class="m-4 space-y-4">
<ol class="p-4 space-y-4">
{#each $reportCardList as reportCard}
<li>
{#if reportCard._DocumentGU}
Expand Down

0 comments on commit e641eea

Please sign in to comment.