Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
1348eb33
Unverified
Commit
1348eb33
authored
Feb 22, 2023
by
Jack Short
Committed by
GitHub
Feb 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: token selector correct zIndex on mobile for pwat (#6017)
parent
a2271ba4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Bag.tsx
src/nft/components/bag/Bag.tsx
+1
-1
Overlay.css.ts
src/nft/components/modals/Overlay.css.ts
+1
-1
index.tsx
src/nft/pages/collection/index.tsx
+1
-1
No files found.
src/nft/components/bag/Bag.tsx
View file @
1348eb33
...
@@ -65,7 +65,7 @@ const BagContainer = styled.div<{ raiseZIndex: boolean; isProfilePage: boolean }
...
@@ -65,7 +65,7 @@ const BagContainer = styled.div<{ raiseZIndex: boolean; isProfilePage: boolean }
border-radius: 16px;
border-radius: 16px;
box-shadow:
${({
theme
})
=>
theme
.
shallowShadow
}
;
box-shadow:
${({
theme
})
=>
theme
.
shallowShadow
}
;
z-index:
${({
raiseZIndex
,
isProfilePage
})
=>
z-index:
${({
raiseZIndex
,
isProfilePage
})
=>
raiseZIndex
?
(
isProfilePage
?
Z_INDEX
.
modalOverTooltip
:
Z_INDEX
.
modalBackdrop
+
2
)
:
3
}
;
raiseZIndex
?
(
isProfilePage
?
Z_INDEX
.
modalOverTooltip
:
Z_INDEX
.
modalBackdrop
-
1
)
:
3
}
;
@media only screen and (max-width:
${({
theme
})
=>
`
${
theme
.
breakpoint
.
sm
}
px`
}
) {
@media only screen and (max-width:
${({
theme
})
=>
`
${
theme
.
breakpoint
.
sm
}
px`
}
) {
right: 0px;
right: 0px;
...
...
src/nft/components/modals/Overlay.css.ts
View file @
1348eb33
...
@@ -16,6 +16,6 @@ export const overlay = style([
...
@@ -16,6 +16,6 @@ export const overlay = style([
{
{
opacity
:
0.72
,
opacity
:
0.72
,
overflow
:
'
hidden
'
,
overflow
:
'
hidden
'
,
zIndex
:
Z_INDEX
.
modalBackdrop
+
1
,
zIndex
:
Z_INDEX
.
modalBackdrop
-
2
,
},
},
])
])
src/nft/pages/collection/index.tsx
View file @
1348eb33
...
@@ -85,7 +85,7 @@ const FiltersContainer = styled.div<{ isMobile: boolean; isFiltersExpanded: bool
...
@@ -85,7 +85,7 @@ const FiltersContainer = styled.div<{ isMobile: boolean; isFiltersExpanded: bool
width:
${({
isMobile
})
=>
(
isMobile
?
'
100%
'
:
'
0px
'
)}
;
width:
${({
isMobile
})
=>
(
isMobile
?
'
100%
'
:
'
0px
'
)}
;
height:
${({
isMobile
,
isFiltersExpanded
})
=>
(
isMobile
&&
isFiltersExpanded
?
'
100%
'
:
undefined
)}
;
height:
${({
isMobile
,
isFiltersExpanded
})
=>
(
isMobile
&&
isFiltersExpanded
?
'
100%
'
:
undefined
)}
;
background:
${({
theme
,
isMobile
})
=>
(
isMobile
?
theme
.
backgroundBackdrop
:
undefined
)}
;
background:
${({
theme
,
isMobile
})
=>
(
isMobile
?
theme
.
backgroundBackdrop
:
undefined
)}
;
z-index:
${
Z_INDEX
.
modalBackdrop
}
;
z-index:
${
Z_INDEX
.
modalBackdrop
-
3
}
;
overflow-y:
${({
isMobile
})
=>
(
isMobile
?
'
scroll
'
:
undefined
)}
;
overflow-y:
${({
isMobile
})
=>
(
isMobile
?
'
scroll
'
:
undefined
)}
;
@media screen and (min-width:
${({
theme
})
=>
theme
.
breakpoint
.
sm
}
px) {
@media screen and (min-width:
${({
theme
})
=>
theme
.
breakpoint
.
sm
}
px) {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment