diff --git a/src/renderer/components/Button.vue b/src/renderer/components/Button.vue index c28dafc..b142f2a 100644 --- a/src/renderer/components/Button.vue +++ b/src/renderer/components/Button.vue @@ -28,36 +28,36 @@ export default { transition: background-color 200ms box-sizing: border-box outline: unset + color: grey + transition: all .2s ease-in-out + svg + width: 14px + height: 14px + transition: fill 200ms + fill: gray + &:hover + background-color: rgba(0,0,0,0.05) + &:focus,&:active + background-color: rgba(0,0,0,.15) + &--contained background-color: #0076F9 color: white font-weight: 600 + svg + fill: white &:hover background-color: lighten(#0076F9,5) &:focus,&:active background-color: darken(#0076F9,5) - svg - width: 14px - height: 14px - fill: white - transition: fill 200ms - - &--flat - color: grey - transition: all .2s ease-in-out - svg - fill: gray - &:hover - background-color: rgba(0,0,0,0.05) - &:focus,&:active - background-color: rgba(0,0,0,.15) - &--raised background-color: #0076F9 color: white font-weight: 600 box-shadow: 0 .3rem .7rem rgba(#0076F9 , .5) + svg + fill: white &:hover background-color: lighten(#0076F9,5) &:focus,&:active diff --git a/src/renderer/layouts/DockableSidebar.vue b/src/renderer/layouts/DockableSidebar.vue index c53e10b..7ef561d 100644 --- a/src/renderer/layouts/DockableSidebar.vue +++ b/src/renderer/layouts/DockableSidebar.vue @@ -81,7 +81,7 @@ -