Skip to content

Commit

Permalink
🎨style: remove breakline (#1021)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marukome0743 authored Oct 1, 2024
1 parent c0730fd commit f331e31
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 31 deletions.
4 changes: 2 additions & 2 deletions app/history/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ export default function History(): JSX.Element {
{HIROSHIMA.name}
</h2>
{HIROSHIMA_HISTORY.map((history) => (
<section key={history.date} className="space-y-4">
<section key={history.date} className="space-y-4 px-2">
<details className={`group w-full ${styles.details}`}>
<summary className="block bg-amber-50 font-bold font-zenMaruGothic p-4 relative rounded-2xl text-2xl w-full group-open:rounded-b-none">
<p className="absolute outline outline-offset-2 rounded text-rose-400 text-xs -rotate-45">
大好評で
<br />
開催終了
</p>
<span className="ml-4 sm:ml-0">{history.title}</span>
<span className="ml-8 sm:ml-0">{history.title}</span>
</summary>
<Programs programs={history.programs} />
<PictureTile
Expand Down
2 changes: 1 addition & 1 deletion app/kanto_event/qAndA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function QA({
return (
<>
<Heading menus={[menu, Q_AND_A]} />
<section className="space-y-2">
<section className="px-1 space-y-2">
{qAndAs.map((qAndA, index) => (
<details
key={qAndA.title}
Expand Down
36 changes: 8 additions & 28 deletions app/kanto_event/requirement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,45 +40,25 @@ export function Requirement({
</div>
<div className="border-1 border-b pb-2">
<p className="font-bold">参加条件</p>
<ul className="list-disc pl-8 space-y-3 text-left">
<ul className="list-disc pl-7 pr-2 space-y-3 text-left">
<li>3日間で1つのイベントである為、全日程にご参加頂けること</li>
<li>イベントの感想やアンケートにご対応頂けること</li>
<li>
3日間で1つのイベントである為、
<br />
全日程にご参加頂けること
</li>
<li>
イベントの感想やアンケートに
<br />
ご対応頂けること
</li>
<li>
今後のイベント募集、また、
<br />
スポンサーやパートナーの取り組み
<br />
事例紹介として、イベント写真・
<br />
動画利用の承諾を頂けること
今後のイベント募集、また、スポンサーやパートナーの取り組み事例紹介として、イベント写真・動画利用の承諾を頂けること
</li>
</ul>
</div>
<div>
<p className="font-bold">注意事項</p>
<ul className="list-disc pl-8 space-y-3 text-left">
<ul className="list-disc pl-7 pr-2 space-y-3 text-left">
<li>
受付手続きや会場内の移動を考慮し、
<br />
集合時間は数十分、早くなります。
受付手続きや会場内の移動を考慮し、集合時間は数十分、早くなります。
</li>
<li>
プログラム初日のクルックフィールズは、
<br />
飲食物のお持ち込みができません。
プログラム初日のクルックフィールズは、飲食物のお持ち込みができません。
</li>
<li>
場内でのお弁当のご購入と、
<br />
マイボトルのご持参をお願いいたします。
場内でのお弁当のご購入と、マイボトルのご持参をお願いいたします。
</li>
</ul>
</div>
Expand Down

0 comments on commit f331e31

Please sign in to comment.