Removed dark mode classes to prevent style conflicts
This commit is contained in:
parent
9e58fbbbf2
commit
ec8f2c728d
@ -59,7 +59,7 @@
|
|||||||
Based on others who have taken this quiz, here are the playbooks of fellow travellers you are likely to meet along the way.
|
Based on others who have taken this quiz, here are the playbooks of fellow travellers you are likely to meet along the way.
|
||||||
</p>
|
</p>
|
||||||
<table class="table-auto w-full max-w-sm mx-auto text-left">
|
<table class="table-auto w-full max-w-sm mx-auto text-left">
|
||||||
<thead class="text-xs text-gray-700 uppercase bg-lime-100 dark:bg-gray-700 dark:text-gray-400">
|
<thead class="text-xs text-gray-700 uppercase bg-lime-100">
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
|
|
||||||
@ -76,7 +76,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(number, playbook, index) in this.resultsStore.playbooks" :key="playbook" class="hover:bg-yellow-50" :class="index % 2 == 0? `bg-lime-50 border-b dark:bg-gray-900 dark:border-gray-700` : `bg-lime-100 border-b dark:bg-gray-800 dark:border-gray-700`">
|
<tr v-for="(number, playbook, index) in this.resultsStore.playbooks" :key="playbook" class="hover:bg-yellow-50" :class="index % 2 == 0? `bg-lime-50 border-b` : `bg-lime-100 border-b`">
|
||||||
<td v-if="this.resultsStore.results.playbooks.some(obj => obj.hasOwnProperty(playbook))">
|
<td v-if="this.resultsStore.results.playbooks.some(obj => obj.hasOwnProperty(playbook))">
|
||||||
<ChevronDoubleRight/>
|
<ChevronDoubleRight/>
|
||||||
</td>
|
</td>
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
While the playbook you are is the one most reflected by your answers, here are the other playbooks and the extent to which they have a bearing upon your journey.
|
While the playbook you are is the one most reflected by your answers, here are the other playbooks and the extent to which they have a bearing upon your journey.
|
||||||
</p>
|
</p>
|
||||||
<table class="table-auto w-full max-w-sm mx-auto text-left">
|
<table class="table-auto w-full max-w-sm mx-auto text-left">
|
||||||
<thead class="text-xs text-gray-700 uppercase bg-lime-100 dark:bg-gray-700 dark:text-gray-400">
|
<thead class="text-xs text-gray-700 uppercase bg-lime-100">
|
||||||
<tr>
|
<tr>
|
||||||
<th class="pl-10">
|
<th class="pl-10">
|
||||||
Playbook
|
Playbook
|
||||||
@ -41,7 +41,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(score, playbook, index) in this.resultsStore.results.all_playbooks" :key="playbook" class="hover:bg-yellow-50" :class="index % 2 == 0? `bg-lime-50 border-b dark:bg-gray-900 dark:border-gray-700` : `bg-lime-100 border-b dark:bg-gray-800 dark:border-gray-700`">
|
<tr v-for="(score, playbook, index) in this.resultsStore.results.all_playbooks" :key="playbook" class="hover:bg-yellow-50" :class="index % 2 == 0? `bg-lime-50 border-b` : `bg-lime-100 border-b`">
|
||||||
<td scope="col" class="py-1 pl-10 capitalize">
|
<td scope="col" class="py-1 pl-10 capitalize">
|
||||||
The {{ playbook }}
|
The {{ playbook }}
|
||||||
</td>
|
</td>
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
Or, indeed, it can provide insight into how the questions we ask of each other bias the way we perceive the world.
|
Or, indeed, it can provide insight into how the questions we ask of each other bias the way we perceive the world.
|
||||||
</p>
|
</p>
|
||||||
<table class="table-auto w-full mx-auto max-w-lg text-left">
|
<table class="table-auto w-full mx-auto max-w-lg text-left">
|
||||||
<thead class="text-xs text-gray-700 uppercase bg-lime-100 dark:bg-gray-700 dark:text-gray-400">
|
<thead class="text-xs text-gray-700 uppercase bg-lime-100">
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
|
|
||||||
@ -83,7 +83,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(stats, playbook, index) in this.resultsStore.scores" :key="playbook" class="hover:bg-yellow-50" :class="index % 2 == 0? `bg-lime-50 border-b dark:bg-gray-900 dark:border-gray-700` : `bg-lime-100 border-b dark:bg-gray-800 dark:border-gray-700`">
|
<tr v-for="(stats, playbook, index) in this.resultsStore.scores" :key="playbook" class="hover:bg-yellow-50" :class="index % 2 == 0? `bg-lime-50 border-b` : `bg-lime-100 border-b`">
|
||||||
<td v-if="this.resultsStore.results.playbooks.some(obj => obj.hasOwnProperty(playbook))">
|
<td v-if="this.resultsStore.results.playbooks.some(obj => obj.hasOwnProperty(playbook))">
|
||||||
<ChevronDoubleRight/>
|
<ChevronDoubleRight/>
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user