File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const WalletFilterSidebar = ({
45
45
const { supportedLanguage } = useContext ( WalletSupportedLanguageContext )
46
46
47
47
return (
48
- < Box w = { { md : "330px" } } { ...boxProps } >
48
+ < Box w = { { md : showMobileSidebar ? "full" : "330px" } } { ...boxProps } >
49
49
< Box position = "sticky" top = { top ?? 0 } zIndex = { 2 } w = { { md : "330px" } } >
50
50
< Flex
51
51
justifyContent = "space-between"
Original file line number Diff line number Diff line change @@ -362,10 +362,7 @@ const WalletTable = ({
362
362
{ hasPersonasLabels && (
363
363
< Flex gap = { 1.5 } wrap = "wrap" >
364
364
{ walletPersonas . map ( ( persona ) => (
365
- < Tag
366
- key = { persona }
367
- label = { t ( persona ) . toUpperCase ( ) }
368
- />
365
+ < Tag key = { persona } label = { t ( persona ) } />
369
366
) ) }
370
367
</ Flex >
371
368
) }
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { useTranslation } from "next-i18next"
5
5
import { serverSideTranslations } from "next-i18next/serverSideTranslations"
6
6
import {
7
7
Box ,
8
+ calc ,
8
9
Center ,
9
10
Flex ,
10
11
Text ,
@@ -218,7 +219,7 @@ const FindWalletPage = () => {
218
219
{ /* Filters sidebar */ }
219
220
< WalletFilterSidebar
220
221
hideBelow = "lg"
221
- top = { NAV_BAR_PX_HEIGHT }
222
+ top = { calc ( NAV_BAR_PX_HEIGHT ) . subtract ( "2px" ) . toString ( ) }
222
223
{ ...{
223
224
filters,
224
225
resetWalletFilter,
You can’t perform that action at this time.
0 commit comments