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: 0 additions & 4 deletions dapp-oeth/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ export default function DApp({ locale, onLocale }) {
</div>
</Layout>
<style jsx>{`
.home {
padding-top: 20px;
}

@media (max-width: 799px) {
.home {
padding: 0;
Expand Down
2 changes: 1 addition & 1 deletion dapp-oeth/pages/pool/[pool_name]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export default function PoolDetailsPage({ locale, onLocale }) {
return (
process.env.NEXT_PUBLIC_ENABLE_LIQUIDITY_MINING === 'true' && (
<>
<Nav page={'pool-details'} locale={locale} onLocale={onLocale} />
<Layout onLocale={onLocale} locale={locale} short>
<Nav page={'pool-details'} locale={locale} onLocale={onLocale} />
<div className="home d-flex flex-column">
{pools.length > 0 && <PoolDetails pool={pool} />}
{pools.length === 0 && <h1>{fbt('Loading...', 'Loading...')}</h1>}
Expand Down
18 changes: 10 additions & 8 deletions dapp-oeth/public/images/settings-icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions dapp-oeth/src/components/AccountStatusDropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ const AccountStatusDropdown = ({ className, showLogin }) => {

.account-status:hover {
}

@media (max-width: 799px) {
.account-status {
padding: 8px;
}
}
`}</style>
</>
)
Expand Down
2 changes: 1 addition & 1 deletion dapp-oeth/src/components/IPFSDappLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export default function IPFSDappLink({ css }) {
['app.oeth.com', 'staging.app.oeth.com'].includes(window.location.host) ||
window.location.host.startsWith('localhost:') ||
window.location.host.startsWith('oeth-dapp-staging') ||
window.location.host.endsWith('.on.fleek.co') ||
window.location.host.startsWith('oeth-dapp')
)
}, [])
Expand All @@ -33,7 +34,6 @@ export default function IPFSDappLink({ css }) {
margin-right: 10px;
background-color: #1e1f25;
color: #fafbfb;
padding: 0px 10px;
}

.ipfs-link span {
Expand Down
2 changes: 1 addition & 1 deletion dapp-oeth/src/components/MissionControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const MissionControl = ({}) => {
<SwapHomepage />
</div>
<style jsx>{`
@media (max-width: 799px) {
@media (max-width: 767px) {
.swap-contain {
padding: 0 20px;
}
Expand Down
Loading