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

updated dApps dropdown, added docs/about styles, asking to remove clg #255

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
19 changes: 12 additions & 7 deletions src/components/styles/header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@

.header .usecases div a,
.header .research div a,
.header .governance div a {
.header .governance div a,
.header .docs div a,
.header .about div a {
color: var(--color-gray) !important;
}

Expand Down Expand Up @@ -96,7 +98,7 @@
border: none;
}

@media screen and (min-width: 768px) {
@media screen and (min-width: 992px) {
.header nav > div > div:nth-child(2) > div > div {
margin-top: 1rem !important;
min-width: fit-content;
Expand All @@ -121,7 +123,7 @@
}

.header nav div div:nth-child(1) button[class~="collapsed"]::after {
content: " ";
content: "";
display: inline-block;
border-top: 0.6ex solid transparent;
border-bottom: 0.6ex solid transparent;
Expand All @@ -134,17 +136,18 @@
}
@media screen and (max-width: 992px) {
.header nav div div:nth-child(1) button[class~="collapsed"]::after {
transform: rotate(90deg) translateX(0px);
transform: rotate(0deg) translateX(0px);
}

.header nav div div:nth-child(1) button::after {
content: " ";
content: "";
display: inline-block;
border-top: 0.6ex solid transparent;
border-bottom: 0.6ex solid transparent;
border-left: 0.6ex solid;
vertical-align: middle;
transform: translateY(-0.1rem);
transform: rotate(90deg) translateX(0px);
margin-left: 0.5rem;
}
}
Expand All @@ -159,13 +162,15 @@
text-align: right;
}

@media screen and (max-width: 992px) {
/*
Any specific code to be added here? Let me know!
@media screen and (max-width: 992px) {
.header div > div:nth-child(2) > div > div {
}

.header div > div:nth-child(2) > div > a {
}
}
} */

.header svg {
width: 3rem;
Expand Down
1 change: 1 addition & 0 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ class IndexPage extends React.Component {
const { intl } = this.props;

const { disputes, metaEvidences, subcourts, subcourtDetails, subcourtsExtra, loading, klerosCounters } = this.state;
// should the console logs be removed?
console.log(this.state);
console.log(EthereumInterface.Web3.utils.fromWei("123123123123123123"));
return (
Expand Down