Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/CurrencySearchModal/CurrencySearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ const CurrencySearch: React.FC<CurrencySearchProps> = ({
</AutoSizer>
</Box>

<Box className='footer' />
<Box className='currencySearchFooter' />
</Box>
);
};
Expand Down
21 changes: 11 additions & 10 deletions src/components/styles/CurrencySearchModal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
background: $bgColor;
backdrop-filter: blur(9.9px);
border: 1px solid $grey2;
overflow: hidden;
.currencySearchHeader {
display: flex;
justify-content: space-between;
Expand All @@ -24,20 +25,20 @@
font-weight: 600,
}
}
.footer {
background-image: linear-gradient(to bottom, $grey15, $bgColor 64%);
width: 100%;
height: 64px;
position: absolute;
bottom: 0;
left: 0;
z-index: 2;
border-radius: 20px;
}
@include media("screen", "<phone") {
height: 90vh;
}
}
.currencySearchFooter {
background-image: linear-gradient(to bottom, $grey15, $bgColor 64%);
width: 100%;
height: 64px;
position: absolute;
bottom: 0;
left: 0;
z-index: 2;
pointer-events: none;
}
.searchInputWrapper {
width: 100%;
height: 50px;
Expand Down