From 418b57f9fbc225ae0f7151fbf72c4335ca117f54 Mon Sep 17 00:00:00 2001 From: Robert Kojima Date: Sat, 1 Sep 2018 10:25:55 -0700 Subject: [PATCH] Press kit pointer cursor (#10640) * cursor while hovering over press-kit faq now a pointer instead of text * deleted extraneous spaces --- website/client/components/static/pressKit.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/website/client/components/static/pressKit.vue b/website/client/components/static/pressKit.vue index becbd69faf..150606dce0 100644 --- a/website/client/components/static/pressKit.vue +++ b/website/client/components/static/pressKit.vue @@ -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') }} + +