diff --git a/client/src/components/Button.vue b/client/src/components/Button.vue index 2685eaf..8e7694e 100644 --- a/client/src/components/Button.vue +++ b/client/src/components/Button.vue @@ -1,11 +1,14 @@ - @@ -28,4 +31,19 @@ export default { box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 1); } } +.login { + transition: + letter-spacing ease-in-out 200ms, + box-shadow ease-in-out 150ms, + transform ease-in-out 100ms; + + &:hover { + letter-spacing: .5px; + box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.65); + } + &:active { + background-color: darken($primary, 30%); + transform: scale(.95); + } +} diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue index 1ef6a3f..02bd8dc 100644 --- a/client/src/views/Home.vue +++ b/client/src/views/Home.vue @@ -2,7 +2,12 @@
-