Skip to content

Commit

Permalink
feat: Add mixi2 link
Browse files Browse the repository at this point in the history
  • Loading branch information
bicstone committed Dec 17, 2024
1 parent 2dcf983 commit 93d08a6
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/features/Bio/BioCardList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,17 @@ export const BioCardList = (): React.JSX.Element => {
gridTemplateColumns: "repeat(3, 1fr)",
maxHeight: expend ? "none" : theme.spacing(106),
},
[theme.breakpoints.down("sm")]: {
maxHeight: expend ? "none" : theme.spacing(88),
// HACK: ブレークポイントの定義
"@media (max-width: 500.95px) {": {
maxHeight: expend ? "none" : theme.spacing(94),
},
// HACK: ブレークポイントの定義
"@media (max-width: 550.95px) {": {
maxHeight: expend ? "none" : theme.spacing(91),
},
// HACK: ブレークポイントの定義
"@media (max-width: 400.95px) {": {
maxHeight: expend ? "none" : theme.spacing(82),
},
})}
>
Expand Down

0 comments on commit 93d08a6

Please sign in to comment.