aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/components/base/Card.astro
diff options
context:
space:
mode:
Diffstat (limited to 'apps/website/src/components/base/Card.astro')
-rw-r--r--apps/website/src/components/base/Card.astro6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/website/src/components/base/Card.astro b/apps/website/src/components/base/Card.astro
index 2eea908..6438273 100644
--- a/apps/website/src/components/base/Card.astro
+++ b/apps/website/src/components/base/Card.astro
@@ -16,7 +16,7 @@ const {
---
<!-- pt-1 added temporarily cause for some reason the icon's padding doesn't apply unless I add this. the wonders of CSS. -->
-<div {...rest} class="rounded-xl bg-gray-600 w-[256px] pt-1 shrink-0">
- <Icon icon={icon} size={48} class="my-[20px] mx-auto text-white"></Icon>
- <p class="text-white mx-auto bg-primary-600 rounded-b-xl text-[14px] py-[5px] pl-[12px] pr-[32px]">{text}</p>
+<div {...rest} class="rounded-xl bg-primary-100 w-[256px] shrink-0">
+ <Icon icon={icon} size={48} class="my-[28px] mx-auto text-white"></Icon>
+ <p class="text-white mx-auto bg-primary-200 rounded-b-xl text-[14px] py-[7px] pl-[12px] pr-[32px]">{text}</p>
</div>