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 dapp-oeth/src/components/MissionControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const MissionControl = ({}) => {
<style jsx>{`
@media (max-width: 767px) {
.swap-contain {
padding: 0 20px;
padding: 0 8px;
}
}
`}</style>
Expand Down
14 changes: 7 additions & 7 deletions dapp-oeth/src/components/Nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -683,10 +683,6 @@ const Nav = ({ isMobile, locale, onLocale, page }) => {
}

@media (max-width: 992px) {
.nav-container {
padding: 0 30px;
}

.dapplinks-contain {
width: 100%;
}
Expand Down Expand Up @@ -787,8 +783,7 @@ const Nav = ({ isMobile, locale, onLocale, page }) => {
}

.navbar .nav-container {
padding-left: 20px !important;
padding-right: 20px !important;
padding: 0 20px;
}

.ousd-experimental-notice {
Expand Down Expand Up @@ -876,7 +871,6 @@ const Nav = ({ isMobile, locale, onLocale, page }) => {

.navbar .nav-container {
margin: 1.5rem 0;
padding: 0 30px;
}

.lang-opts {
Expand All @@ -890,6 +884,12 @@ const Nav = ({ isMobile, locale, onLocale, page }) => {
transform: translate(-50%, 0);
}
}

@media (max-width: 799px) {
.navbar .nav-container {
padding: 0 8px;
}
}
`}</style>
</>
)
Expand Down
2 changes: 1 addition & 1 deletion dapp-oeth/src/components/buySell/BalanceHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ const BalanceHeader = ({
.balance-header {
align-items: center;
text-align: center;
padding: 0px 20px;
padding: 0px 8px;
min-height: 80px;
}

Expand Down
Loading