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
2ce5990f
Unverified
Commit
2ce5990f
authored
Nov 11, 2022
by
aballerr
Committed by
GitHub
Nov 11, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fixing header on light mode (#5178)
* fixing header on light mode
parent
d5685156
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
CollectionNfts.css.ts
src/nft/components/collection/CollectionNfts.css.ts
+2
-0
CollectionNfts.tsx
src/nft/components/collection/CollectionNfts.tsx
+1
-0
FilterButton.tsx
src/nft/components/collection/FilterButton.tsx
+1
-0
No files found.
src/nft/components/collection/CollectionNfts.css.ts
View file @
2ce5990f
...
@@ -8,6 +8,8 @@ export const assetList = style([
...
@@ -8,6 +8,8 @@ export const assetList = style([
gap
:
{
sm
:
'
8
'
,
md
:
'
12
'
,
lg
:
'
20
'
},
gap
:
{
sm
:
'
8
'
,
md
:
'
12
'
,
lg
:
'
20
'
},
}),
}),
{
{
paddingLeft
:
14
,
paddingRight
:
14
,
gridTemplateColumns
:
'
repeat(auto-fill, minmax(160px, 1fr) )
'
,
gridTemplateColumns
:
'
repeat(auto-fill, minmax(160px, 1fr) )
'
,
'
@media
'
:
{
'
@media
'
:
{
'
screen and (min-width: 708px)
'
:
{
'
screen and (min-width: 708px)
'
:
{
...
...
src/nft/components/collection/CollectionNfts.tsx
View file @
2ce5990f
...
@@ -122,6 +122,7 @@ const SweepButton = styled.div<{ toggled: boolean; disabled?: boolean }>`
...
@@ -122,6 +122,7 @@ const SweepButton = styled.div<{ toggled: boolean; disabled?: boolean }>`
border: none;
border: none;
border-radius: 12px;
border-radius: 12px;
padding: 12px 18px 12px 12px;
padding: 12px 18px 12px 12px;
margin-right: 14px;
cursor:
${({
disabled
})
=>
(
disabled
?
'
auto
'
:
'
pointer
'
)}
;
cursor:
${({
disabled
})
=>
(
disabled
?
'
auto
'
:
'
pointer
'
)}
;
color:
${({
toggled
,
disabled
,
theme
})
=>
(
toggled
&&
!
disabled
?
theme
.
accentTextLightPrimary
:
theme
.
textPrimary
)}
;
color:
${({
toggled
,
disabled
,
theme
})
=>
(
toggled
&&
!
disabled
?
theme
.
accentTextLightPrimary
:
theme
.
textPrimary
)}
;
background:
${({
theme
,
toggled
,
disabled
})
=>
background:
${({
theme
,
toggled
,
disabled
})
=>
...
...
src/nft/components/collection/FilterButton.tsx
View file @
2ce5990f
...
@@ -34,6 +34,7 @@ export const FilterButton = ({
...
@@ -34,6 +34,7 @@ export const FilterButton = ({
position=
"relative"
position=
"relative"
onClick=
{
onClick
}
onClick=
{
onClick
}
padding=
"12"
padding=
"12"
marginLeft=
"14"
width=
{
isMobile
?
'
44
'
:
'
auto
'
}
width=
{
isMobile
?
'
44
'
:
'
auto
'
}
height=
"44"
height=
"44"
whiteSpace=
"nowrap"
whiteSpace=
"nowrap"
...
...
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