diff --git a/components/Dialog/index.scss b/components/Dialog/index.scss index f120d636..3ffd9616 100644 --- a/components/Dialog/index.scss +++ b/components/Dialog/index.scss @@ -22,6 +22,12 @@ text-decoration: underline; } + @media (max-width: $phone) { + min-width: inherit; + min-height: inherit; + width: 100%; + } + .DialogHeader { display: flex; align-items: center; diff --git a/components/PartySegmentedControl/index.scss b/components/PartySegmentedControl/index.scss index 207a38da..2a665786 100644 --- a/components/PartySegmentedControl/index.scss +++ b/components/PartySegmentedControl/index.scss @@ -1,5 +1,6 @@ .PartyNavigation { align-items: center; + box-sizing: border-box; display: flex; gap: 58px; justify-content: center; @@ -22,6 +23,13 @@ .SegmentedControl { flex-grow: 1; + + @media (max-width: $phone) { + flex-grow: 1; + width: 100%; + display: grid; + grid-template-columns: auto auto auto; + } } } } diff --git a/components/SearchFilter/index.scss b/components/SearchFilter/index.scss index 557ca3a8..440c9532 100644 --- a/components/SearchFilter/index.scss +++ b/components/SearchFilter/index.scss @@ -8,8 +8,14 @@ button.DropdownLabel { font-size: $font-small; gap: $unit-half; flex-direction: row; + justify-content: space-between; padding: $unit ($unit * 1.5) $unit $unit-2x; + div { + display: flex; + gap: $unit-half; + } + &:hover { background: var(--button-contained-bg-hover); color: var(--text-primary); diff --git a/components/SearchFilter/index.tsx b/components/SearchFilter/index.tsx index 2cef27a9..9d08e62b 100644 --- a/components/SearchFilter/index.tsx +++ b/components/SearchFilter/index.tsx @@ -17,8 +17,10 @@ const SearchFilter = (props: Props) => { return ( - {props.label} - {props.numSelected} +
+ {props.label} + {props.numSelected} +
diff --git a/components/SearchModal/index.scss b/components/SearchModal/index.scss index fa823095..08e428a5 100644 --- a/components/SearchModal/index.scss +++ b/components/SearchModal/index.scss @@ -1,4 +1,5 @@ .Search.Dialog { + box-sizing: border-box; display: flex; flex-direction: column; min-height: 431px; @@ -7,6 +8,13 @@ gap: 0; padding: 0; + @media (max-width: $phone) { + min-width: inherit; + min-height: inherit; + width: 96%; // is this even right + height: 96vh; + } + #Header { border-bottom: 1px solid transparent; display: flex; @@ -60,6 +68,10 @@ padding: 0 ($unit * 1.5); overflow-y: scroll; + @media (max-width: $phone) { + max-height: inherit; + } + h5.total { font-size: $font-regular; font-weight: $normal; diff --git a/components/Segment/index.scss b/components/Segment/index.scss index 1733ac6e..73bb4084 100644 --- a/components/Segment/index.scss +++ b/components/Segment/index.scss @@ -35,6 +35,7 @@ } @media (max-width: $phone) { - min-width: auto; + min-width: initial; + width: 100%; } } diff --git a/components/SummonGrid/index.scss b/components/SummonGrid/index.scss index 88827936..c030ad78 100644 --- a/components/SummonGrid/index.scss +++ b/components/SummonGrid/index.scss @@ -10,6 +10,15 @@ font-weight: $medium; margin-bottom: $unit; text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + + @media (max-width: $phone) { + &.Friend { + max-width: 78px; + } + } } #grid_summons { diff --git a/components/SummonGrid/index.tsx b/components/SummonGrid/index.tsx index 1720c032..f0e96821 100644 --- a/components/SummonGrid/index.tsx +++ b/components/SummonGrid/index.tsx @@ -232,7 +232,7 @@ const SummonGrid = (props: Props) => { const friendSummonElement = (
-
{t('summons.friend')}
+
{t('summons.friend')}