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
4 changes: 2 additions & 2 deletions src/components/NewVersionModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Modal = styled.div<{ isOpen: boolean }>`
padding: 144px 32px;
}

@media (max-height: 610px) {
@media (max-height: 846px) {
padding: 32px;
}
`
Expand Down Expand Up @@ -104,7 +104,7 @@ const ModalHeading = styled.h3`
font-size: 36px;
}

@media (max-height: 610px) {
@media (max-height: 846px) {
font-size: 20px;
}
`
Expand Down
2 changes: 1 addition & 1 deletion src/layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { Outlet } from 'react-router-dom'
import HederaPoolWarning from 'src/components/Header/HederaPoolWarning'
import URLWarning from 'src/components/Header/URLWarning'
import { NewVersionModal } from 'src/components/NewVersionModal'

Check failure on line 5 in src/layout/index.tsx

View workflow job for this annotation

GitHub Actions / lint_tsc

'NewVersionModal' is declared but its value is never read.
import styled from 'styled-components'
import Footer from './Footer'
import Header from './Header'
Expand Down Expand Up @@ -58,7 +58,7 @@
</AppContent>
{activeMobileMenu && <MobileMenu activeMobileMenu={activeMobileMenu} handleMobileMenu={handleMobileMenu} />}
<Footer />
<NewVersionModal />
{/* <NewVersionModal /> */}
</MainContent>
</Wrapper>
)
Expand Down
Loading