diff --git a/src/app.scss b/src/app.scss index 3bad92b..7e4e732 100644 --- a/src/app.scss +++ b/src/app.scss @@ -65,3 +65,29 @@ code, .code-font { font-family: 'Fira Code', monospace; } + +.btn-green, +.btn-red, +.btn-blue, +.btn-yellow { + display: inline-block; + border: none; + box-shadow: none; + box-sizing: border-box; + color: black; + cursor: pointer; + font-size: 20px; + font-weight: 700; + line-height: 24px; + height: 50px; + padding: 4px 16px; + vertical-align: middle; + + &:hover { + color: black; + } +} + +.btn-green { + background-color: #04aa6d; +} diff --git a/src/views/GeneralView.svelte b/src/views/GeneralView.svelte index 6c5f777..f3cd28b 100644 --- a/src/views/GeneralView.svelte +++ b/src/views/GeneralView.svelte @@ -1 +1,5 @@