mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-09 21:58:47 +00:00
Press kit pointer cursor (#10640)
* cursor while hovering over press-kit faq now a pointer instead of text * deleted extraneous spaces
This commit is contained in:
parent
4191ea1968
commit
418b57f9fb
1 changed files with 7 additions and 3 deletions
|
|
@ -17,16 +17,20 @@
|
|||
img.img-fluid.img-rendering-auto.press-img(:src="`/static/presskit/${category}/${secondaryCategory}/${img}`")
|
||||
|
||||
h1 {{ $t('FAQ') }}
|
||||
|
||||
#faq(role='tablist')
|
||||
div(v-for='(QA, index) in faq')
|
||||
.faq-question(v-for='(QA, index) in faq')
|
||||
h2(v-b-toggle="QA.question", tabindex="0", role="button", v-html="$t(QA.question)")
|
||||
b-collapse(:id="QA.question", accordion="pkAccordian", role="tabpanel")
|
||||
p(v-html="$t(QA.answer)")
|
||||
|
||||
p {{ $t('pkMoreQuestions') }}
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.faq-question {
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
// @TODO: EMAILS.PRESS_ENQUIRY_EMAIL
|
||||
const PRESS_ENQUIRY_EMAIL = 'admin@habitica.com';
|
||||
|
|
|
|||
Loading…
Reference in a new issue