メールでご連絡いただくことも可能です。
diff --git a/src/components/faq/FaqSection.astro b/src/components/faq/FaqSection.astro
index 30df358..cb22cd4 100644
--- a/src/components/faq/FaqSection.astro
+++ b/src/components/faq/FaqSection.astro
@@ -1,9 +1,9 @@
---
import Section from '@/components/common/Section.astro'
import XLink from '@/components/common/button/XLink.astro'
-import PeingLink from '@/components/common/button/PeingLink.astro'
import InlineLink from '@/components/common/InlineLink.astro'
import FaqCard from './FaqCard.astro'
+import MarshmallowLink from '../common/button/MarshmallowLink.astro'
---
@@ -13,7 +13,7 @@ import FaqCard from './FaqCard.astro'
-
+
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index 888f3e5..881724d 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -6,6 +6,7 @@ const colors = {
secondary: '#f1f2f7',
discord: '#5865f2',
peing: '#5eb9ba',
+ marshmallow: '#F3979B',
}
const dropShadowLight = (color) => `0 4px 8px ${rgba(color, 0.6)}`
@@ -34,6 +35,8 @@ module.exports = {
'discord-heavy': dropShadowHeavy(colors.discord),
'peing-light': dropShadowLight(colors.peing),
'peing-heavy': dropShadowHeavy(colors.peing),
+ 'marshmallow-light': dropShadowLight(colors.marshmallow),
+ 'marshmallow-heavy': dropShadowHeavy(colors.marshmallow),
},
typography: (theme) => ({
DEFAULT: {
From 5e2fb2505294886bc5d13f2c0db7d52ae3c469a8 Mon Sep 17 00:00:00 2001
From: Rui-32 <166376337+Rui-32@users.noreply.github.com>
Date: Fri, 14 Mar 2025 22:58:41 +0900
Subject: [PATCH 2/2] =?UTF-8?q?=E3=83=95=E3=82=A9=E3=83=BC=E3=83=9E?=
=?UTF-8?q?=E3=83=83=E3=83=88=E4=BF=AE=E6=AD=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/common/button/LinkButton.astro | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/common/button/LinkButton.astro b/src/components/common/button/LinkButton.astro
index 677628e..80bb95c 100644
--- a/src/components/common/button/LinkButton.astro
+++ b/src/components/common/button/LinkButton.astro
@@ -22,7 +22,7 @@ const { variant = 'primary', ...attrs } = Astro.props
variant === 'discord',
'bg-peing text-white drop-shadow-peing-light hover:drop-shadow-peing-heavy':
variant === 'peing',
- 'bg-marshmallow drop-shadow-marshmallow-light hover:drop-shadow-marshumallow-heavy text-white':
+ 'hover:drop-shadow-marshumallow-heavy bg-marshmallow text-white drop-shadow-marshmallow-light':
variant === 'marshmallow',
},
'active:drop-shadow-none',