mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01: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:
committed by
Matteo Pagliazzi
parent
4191ea1968
commit
418b57f9fb
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user