Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
chore: Update url params
Browse files Browse the repository at this point in the history
  • Loading branch information
re-taro committed Oct 23, 2022
1 parent 1850fc7 commit f1e6b2d
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
exports[`(components) molecules/bazaar-card > take snap shot 1`] = `
<div>
<li
class="css-16wvccd"
class="css-4chdo6"
>
<img
alt="バザーに関するイメージ画像"
class="css-61q9gc-BazaarCard"
height="200"
height="300"
src="https://panproduct.com/blog/wp-content/uploads/2021/07/32.png"
width="300"
width="450"
/>
<div
class="css-z0erpm"
Expand Down
6 changes: 3 additions & 3 deletions src/components/molecules/bazaar-card/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const ChipBox = tw.div`inline-flex items-start bg-primary-purple px-4 py-1 round

const ChipText = tw.p`font-zen text-white font-bold text-xs sm:text-base select-none`;

const BazaarCardBox = tw.li`inline-flex flex-col xs:w-75 border border-border-primary rounded-2xl overflow-hidden`;
const BazaarCardBox = tw.li`inline-flex flex-col bazaar:w-112.5 border border-border-primary rounded-2xl overflow-hidden`;

const BazaarCardImage = tw.img`h-full`;

Expand Down Expand Up @@ -34,8 +34,8 @@ const BazaarCard: FC<BazaarCardProperties> = ({ name, description, image, prices
`}
src={image}
alt="バザーに関するイメージ画像"
width={300}
height={200}
width={450}
height={300}
/>
<BazaarCardContent>
<Chip group={group} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ exports[`(components) molecules/hamburger-menu > take snap shot 1`] = `
>
<a
class="css-16racjb-Mock"
href="/bazaar"
href="/bazaar?select=eating"
>
Bazaar
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const args: ComponentPropsWithoutRef<T> = {
name: "Schedule",
},
{
link: "/bazaar",
link: "/bazaar?select=eating",
color: tw`text-primary-purple`,
name: "Bazaar",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const headerLinks = [
name: "Schedule",
},
{
link: "/bazaar",
link: "/bazaar?select=eating",
color: tw`text-primary-purple`,
name: "Bazaar",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ exports[`(components) organisms/bazaar-section > take snap shot 1`] = `
</p>
<a
class="css-fmcavb-Button"
href="/bazaar"
href="/bazaar?select=eating"
role="button"
tabindex="0"
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/organisms/bazaar-section/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const BazaarSection: FC<BazaarSectionProperties> = ({
</Heading>
<Caution title={attentionTitle} sentence={attentions} css={tw`mb-4 sm:mb-8`} />
<Text css={tw`whitespace-pre-wrap mb-6 sm:mb-16`}>{description}</Text>
<Link to="/bazaar">
<Link to="/bazaar?select=eating">
<Button colorKey="purple" as="a" role="button">
{buttonText}
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ exports[`(components) organisms/layout > take snap shot 1`] = `
>
<a
class="css-1lc6xq8-LinkItem"
href="/bazaar"
href="/bazaar?select=eating"
>
Bazaar
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/components/organisms/layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const lists = [
name: "Schedule",
},
{
link: "/bazaar",
link: "/bazaar?select=eating",
color: tw`text-primary-purple`,
name: "Bazaar",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ exports[`(components) templates/top > take snap shot 1`] = `
</p>
<a
class="css-fmcavb-Button"
href="/bazaar"
href="/bazaar?select=eating"
role="button"
tabindex="0"
>
Expand Down
1 change: 1 addition & 0 deletions src/pages/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from "./bazaar";
export * from "./coming-soon";
export * from "./not-found";
export * from "./sponsor";
Expand Down

0 comments on commit f1e6b2d

Please sign in to comment.