diff --git a/app.vue b/app.vue index 9cd2238..10a5728 100644 --- a/app.vue +++ b/app.vue @@ -44,6 +44,24 @@ body { height: 100vh; } +button { + background-color: #4caf50; + border: none; + color: white; + text-align: center; + text-decoration: none; + font-family: "Roboto", sans-serif; + font-size: 16px; + width: max-content; + cursor: pointer; + border-radius: 12px; + transition-duration: 0.4s; + text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + padding: 10px 24px; + height: 50px; +} + #__nuxt { height: 100%; user-select: none; diff --git a/components/game/overlay/options/Dialog.client.vue b/components/game/overlay/options/Dialog.client.vue index be9e080..a8583df 100644 --- a/components/game/overlay/options/Dialog.client.vue +++ b/components/game/overlay/options/Dialog.client.vue @@ -8,7 +8,9 @@ const _window = computed(() => window);