gfd
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-10 22:33:38 +03:00
parent 2757a052d2
commit ccc1824f77
2 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
<template> <template>
<div class="column bg-grey-4 rounded-card q-px-xl q-py-md"> <div class="column bg-grey-4 rounded-card q-px-xl q-pt-md">
<div class="row no-wrap items-center"> <div class="row no-wrap items-center q-pb-md">
<div class="text-h6" style="flex-grow: 2;"> <div class="text-h6" style="flex-grow: 2;">
{{ $t(question) }} {{ $t(question) }}
</div> </div>
@@ -17,12 +17,12 @@
</q-btn> </q-btn>
</div> </div>
</div> </div>
<q-slide-transition> <q-slide-transition>
<div v-show="showAnswer" class="text-body q-py-md text-grey-9"> <div v-if="showAnswer">
<div class="text-body text-grey-9 q-pb-md">
{{ $t(answer) }} {{ $t(answer) }}
</div> </div>
</div>
</q-slide-transition> </q-slide-transition>
</div> </div>

View File

@@ -31,7 +31,7 @@ body, html, #q-app {
} }
:root { :root {
--body-width: 1440px; --body-width: 1240px;
--logo-color-bg-white: grey; --logo-color-bg-white: grey;
--base-radius: 24px; --base-radius: 24px;
} }