Skip to content

Commit

Permalink
chore(components): updated css to be more consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Dalderup authored and Maurice Dalderup committed May 29, 2018
1 parent 94eb431 commit 9e10e7a
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
cursor: default;
}


.accountInfoRefreshButton {
font-size: 1.2rem;
border: none;
Expand All @@ -41,16 +40,22 @@
cursor: pointer;
background-color: white;

transition:all 0.2s ease;
opacity:1;
transition: all 0.2s ease;
opacity: 1;
}

.accountInfoRefreshButton:link,
.accountInfoRefreshButton:visited {
color: #585858;
}

.accountInfoRefreshButton:hover {
opacity: 0.7;
opacity: 0.5;
}

.accountInfoRefreshButton:active {
opacity: 0.7;
opacity: 1;
color: #585858;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,22 @@
cursor: pointer;
color: #585858;
font-size: 1.1rem;
transition:all 0.2s ease;
}

.accountDropDownButton:link,
.accountDropDownButton:visited {
color: #585858;
}

.accountDropDownButton:hover {
font-size: 1.2rem;
opacity: 0.5;
}

.accountDropDownButton:focus {
font-size: 1.2rem;
.accountDropDownButton:active {
opacity: 1;
color: #585858;
font-size: 0.8rem;
}

.accountInfoDropDown {
Expand Down
7 changes: 6 additions & 1 deletion src/app/components/MainNav/MainNav.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@
height: 100%;
border: none;
cursor: pointer;
transition:all 0.3s ease;
transition:all 0.2s ease;
}

.mainNavButton:hover {
opacity: 0.6;
}

.mainNavButton:active {
opacity: 1;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
Expand Down
7 changes: 6 additions & 1 deletion src/app/components/NetworkSwitcher/NetworkSwitcher.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,15 @@
justify-content: center;
height: 100%;
cursor: pointer;
transition:all 0.3s ease;
transition:all 0.2s ease;
}

.networkNavigationButton:hover {
opacity: 0.6;
}

.networkNavigationButton:active {
opacity: 1;
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
Expand Down

0 comments on commit 9e10e7a

Please sign in to comment.