Skip to content

Commit

Permalink
fix a padding bottom bug
Browse files Browse the repository at this point in the history
  • Loading branch information
wkelly17 committed Sep 9, 2024
1 parent e77161f commit 1b31967
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .astro/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1723728279804
"lastUpdateCheck": 1725549794763
}
}
6 changes: 3 additions & 3 deletions src/components/Settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ export default function Settings(props: settingsProps) {
top: props.topAmount()
}}
data-title="dialog__settings__content"
class="fixed right-0 top-0 z-[60] max-h-[90vh] max-w-sm transform animate-[fadeOut_.25s_ease-in-out_forwards] overflow-scroll bg-white px-4 pb-10 pt-3 data-[expanded]:animate-[fadeIn_.25s_ease-in-out_forwards] print:hidden"
class="fixed right-0 top-0 z-[60] max-h-[90vh] max-w-sm transform animate-[fadeOut_.25s_ease-in-out_forwards] overflow-scroll bg-white px-4 pb-40 pt-3 data-[expanded]:animate-[fadeIn_.25s_ease-in-out_forwards] print:hidden"
>
<div
data-title="dialog__header"
class="relative mb-8 flex items-center justify-between"
class="relative mb-8 flex items-center justify-between"
>
<Dialog.Title
data-title="dialog__title"
Expand All @@ -77,7 +77,7 @@ export default function Settings(props: settingsProps) {
</Dialog.Title>
<Dialog.CloseButton
data-title="dialog__close-button"
class="border-gray block rounded-md border border-gray-200 p-3 px-4 text-darkAccent hover:bg-gray-100 focus:outline-2 focus:outline-accent ltr:ml-auto rtl:mr-auto"
class="border-gray block rounded-md border border-gray-200 p-3 px-4 text-darkAccent hover:bg-gray-100 focus:outline-2 focus:outline-accent ltr:ml-auto rtl:mr-auto"
>
<IconClose />
</Dialog.CloseButton>
Expand Down

0 comments on commit 1b31967

Please sign in to comment.