Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dark mode tweaks and overflow fixes #126

Merged
merged 1 commit into from Feb 26, 2020
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -243,12 +243,6 @@ const createBraveReplacePathsTask = () => {
`'${bravePrefix}app/scripts/controllers/threebox'`
)
)
.pipe(
replace(
/'(.*)\/provider-page-container\.component'/gm,
`'${bravePrefix}ui/app/components/app/provider-page-container/provider-page-container.component'`
)
)
.pipe(
replace(
/'(.*)\/unlock-page\.container'/gm,
@@ -98,3 +98,11 @@
.app {
overflow-y: hidden;
}

#app-content {
overflow-y: scroll;
}

.main-container-wrapper {
overflow-y: auto;
}

This file was deleted.

@@ -92,6 +92,22 @@
}
}

.advanced-tab__transaction-data-summary {
background: #fff;
margin: 0px 0px -5px 0px;
}

.custom-tooltip th {
color: #fff;
}

.send-v2__asset-dropdown__asset {

&:hover {
background-color: #282828;
}
}

.confirm-page-container-content {

.tabs__list {
@@ -127,7 +143,7 @@
border: 1px solid #ffffff;
}

h1, h2, span, div, label {
h1, h2, span, div, label, .import-account__back-button {
color: #fff;
}

@@ -1,6 +1,5 @@
#app-content {
background: #d5d9dc;
overflow-y: hidden;
}

.first-time-flow {
@@ -10,20 +10,6 @@ import {
const EMPTY_SEEDS = Array(24).fill(null)

module.exports = class BraveConfirmSeedPhrase extends ConfirmSeedPhrase {
componentDidMount () {
const container = document.querySelector('#app-content')
if (container) {
container.setAttribute('style', 'overflow-y: scroll')
}
super.componentDidMount()
}

componentWillUnmount () {
const container = document.querySelector('#app-content')
if (container) {
container.removeAttribute('style')
}
}

handleSubmit = async () => {
const {

This file was deleted.

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.