Skip to content

Commit

Permalink
fix buttons styles - makes them more visible (#526)
Browse files Browse the repository at this point in the history
* fix buttons styles - makes them more visible

* increase thikness of the icons

* fix: add lighter border and background while not hovering

Co-authored-by: Robert Stewart (eXcell <v-stewro@microsoft.com>
Co-authored-by: stew-ro <60453211+stew-ro@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 5, 2020
1 parent 343ea16 commit 4852c84
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/react/components/pages/editorPage/canvas.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,21 @@
width: 48px;
height: 48px;
outline: none;

background-color: transparent;
border: none;
color: #CCC;
background-color: $darker-1;
border: solid 1px $lighter-2;
color: rgb(0, 161, 241);

&:hover, &.active {
background-color: $lighter-2;
border: solid 1px $lighter-3;
background-color: $darker-2;
border: solid 1px $lighter-3;
}

&:active {
background-color: $darker-2;
}
.ms-Icon {
font-weight: 600;
}
}

.prev {
Expand Down

0 comments on commit 4852c84

Please sign in to comment.