diff --git a/src/App.vue b/src/App.vue index 749d87b..3485155 100644 --- a/src/App.vue +++ b/src/App.vue @@ -148,6 +148,7 @@ button { background-color: $btn-background-color; border: none; border-radius: $btn-border-radius; + box-shadow: $btn-shadow; color: $btn-text-color; cursor: pointer; display: inline-block; @@ -162,6 +163,16 @@ button { } } +.btn.secondary { + background-color: $btn-secondary-background-color; + color: $btn-secondary-text-color; + + &:hover { + background-color: $btn-background-hover-color; + color: $btn-text-hover-color; + } +} + menu { list-style: none; } @@ -200,7 +211,7 @@ header { border-radius: $btn-border-radius; box-shadow: $shadow; box-sizing: border-box; - color: $btn-text-color; + color: $text-color; display: flex; flex-direction: row; flex-shrink: 0; @@ -208,7 +219,7 @@ header { padding: 7px $body-padding; img { - filter: $btn-text-colorizer; + filter: $text-colorizer; height: 1.2em; margin-right: 5px; } @@ -218,11 +229,11 @@ header { } &:hover { - background-color: $btn-text-color; - color: $btn-text-hover-color; + background-color: $btn-background-color; + color: $btn-text-color; img { - filter: $btn-text-hover-colorizer; + filter: $btn-text-colorizer; } } } diff --git a/src/components/PostEditor.vue b/src/components/PostEditor.vue index 786cd24..044f9c5 100644 --- a/src/components/PostEditor.vue +++ b/src/components/PostEditor.vue @@ -310,10 +310,6 @@ textarea { color: $error-color; margin-right: $block-inner-padding; } - - button { - box-shadow: $btn-shadow; - } } .post-form.reply { diff --git a/src/components/PostList.vue b/src/components/PostList.vue index c9cd93e..c25c94c 100644 --- a/src/components/PostList.vue +++ b/src/components/PostList.vue @@ -7,7 +7,7 @@ >