Skip to content

Commit 783cac6

Browse files
committed
Faucet fixes
1 parent 91cae12 commit 783cac6

File tree

1 file changed

+29
-12
lines changed

1 file changed

+29
-12
lines changed

pages/faucet.vue

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,7 @@ onMounted(() => {
259259
</Flex>
260260
261261
<Text size="14" weight="400" color="tertiary" style="line-height: 22px">
262-
Faucet is only available for
263-
<Text weight="600">Mocha</Text>
264-
and
265-
<Text weight="600">Arabica</Text>
266-
networks.
262+
Faucet is available for all Celestia test networks.
267263
</Text>
268264
</Flex>
269265
@@ -447,7 +443,10 @@ onMounted(() => {
447443
name="chevron"
448444
size="16"
449445
color="tertiary"
450-
:style="`transform: rotate(${openedQuestion === 1 ? '180deg' : '0deg'})`"
446+
:style="{
447+
transform: `rotate(${openedQuestion === 1 ? '180deg' : '0deg'})`,
448+
transition: 'all 0.2s ease'
449+
}"
451450
/>
452451
</Flex>
453452
@@ -464,7 +463,10 @@ onMounted(() => {
464463
name="chevron"
465464
size="16"
466465
color="tertiary"
467-
:style="`transform: rotate(${openedQuestion === 2 ? '180deg' : '0deg'})`"
466+
:style="{
467+
transform: `rotate(${openedQuestion === 2 ? '180deg' : '0deg'})`,
468+
transition: 'all 0.2s ease'
469+
}"
468470
/>
469471
</Flex>
470472
@@ -481,7 +483,10 @@ onMounted(() => {
481483
name="chevron"
482484
size="16"
483485
color="tertiary"
484-
:style="`transform: rotate(${openedQuestion === 3 ? '180deg' : '0deg'})`"
486+
:style="{
487+
transform: `rotate(${openedQuestion === 3 ? '180deg' : '0deg'})`,
488+
transition: 'all 0.2s ease'
489+
}"
485490
/>
486491
</Flex>
487492
@@ -501,7 +506,10 @@ onMounted(() => {
501506
name="chevron"
502507
size="16"
503508
color="tertiary"
504-
:style="`transform: rotate(${openedQuestion === 4 ? '180deg' : '0deg'})`"
509+
:style="{
510+
transform: `rotate(${openedQuestion === 4 ? '180deg' : '0deg'})`,
511+
transition: 'all 0.2s ease'
512+
}"
505513
/>
506514
</Flex>
507515
@@ -521,7 +529,10 @@ onMounted(() => {
521529
name="chevron"
522530
size="16"
523531
color="tertiary"
524-
:style="`transform: rotate(${openedQuestion === 5 ? '180deg' : '0deg'})`"
532+
:style="{
533+
transform: `rotate(${openedQuestion === 5 ? '180deg' : '0deg'})`,
534+
transition: 'all 0.2s ease'
535+
}"
525536
/>
526537
</Flex>
527538
@@ -538,7 +549,10 @@ onMounted(() => {
538549
name="chevron"
539550
size="16"
540551
color="tertiary"
541-
:style="`transform: rotate(${openedQuestion === 6 ? '180deg' : '0deg'})`"
552+
:style="{
553+
transform: `rotate(${openedQuestion === 6 ? '180deg' : '0deg'})`,
554+
transition: 'all 0.2s ease'
555+
}"
542556
/>
543557
</Flex>
544558
@@ -555,7 +569,10 @@ onMounted(() => {
555569
name="chevron"
556570
size="16"
557571
color="tertiary"
558-
:style="`transform: rotate(${openedQuestion === 7 ? '180deg' : '0deg'})`"
572+
:style="{
573+
transform: `rotate(${openedQuestion === 7 ? '180deg' : '0deg'})`,
574+
transition: 'all 0.2s ease'
575+
}"
559576
/>
560577
</Flex>
561578

0 commit comments

Comments
 (0)