Skip to content

Commit 64322eb

Browse files
committed
fix: improve formatting and readability in FeatureCard and RLC token overview
1 parent a9686fa commit 64322eb

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed

src/components/FeatureCard.vue

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
11
<template>
2-
<div class="flex h-full flex-col rounded-lg border border-border bg-soft-bg p-6 transition-all duration-200 ease-in-out hover:-translate-y-0.5 hover:shadow-md">
3-
<div class="flex items-center gap-2 mb-4">
2+
<div
3+
class="border-border bg-soft-bg flex h-full flex-col rounded-lg border p-6 transition-all duration-200 ease-in-out hover:-translate-y-0.5 hover:shadow-md"
4+
>
5+
<div class="mb-4 flex items-center gap-2">
46
<Icon :icon="icon" class="text-xl" :class="iconColor" />
57
<h3 class="text-text1 !mt-0 !mb-0 text-base font-semibold">
68
{{ title }}
79
</h3>
810
</div>
9-
11+
1012
<!-- Description mode -->
11-
<p v-if="description && !features" class="text-text2 !mt-2 flex-grow text-sm leading-relaxed">
13+
<p
14+
v-if="description && !features"
15+
class="text-text2 !mt-2 flex-grow text-sm leading-relaxed"
16+
>
1217
{{ description }}
1318
</p>
14-
19+
1520
<!-- Features mode -->
16-
<ul v-if="features" class="space-y-2 text-sm text-gray-700 dark:text-gray-300 flex-grow">
21+
<ul
22+
v-if="features"
23+
class="flex-grow space-y-2 text-sm text-gray-700 dark:text-gray-300"
24+
>
1725
<li
1826
v-for="feature in processedFeatures"
1927
:key="feature.key"

src/overview/rlc.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ description:
1111
<p class="text-lg text-center text-gray-600 max-w-2xl">The native cryptocurrency that powers the entire iExec decentralized confidential computing ecosystem</p>
1212
</div>
1313

14-
**RLC** (**R**un on **L**ots of **C**omputers) serves as the primary medium of exchange for
15-
all interactions within the protocol, enabling users to access confidential
16-
computing services, and rewarding providers for their contributions.
14+
**RLC** (**R**un on **L**ots of **C**omputers) serves as the primary medium of
15+
exchange for all interactions within the protocol, enabling users to access
16+
confidential computing services, and rewarding providers for their
17+
contributions.
1718

1819
## 🎯 What RLC Enables
1920

@@ -36,11 +37,15 @@ transparently distributed to all iExec protocol participants:
3637

3738
</div>
3839

39-
**💡 Transparent:** Payments are distributed based on pricing and
40-
conditions defined by each
41-
provider (iApp, Protected Data, Worker) in their marketplace orders.
40+
**💡 Transparent:** Payments are distributed based on pricing and conditions
41+
defined by each provider (iApp, Protected Data, Worker) in their marketplace
42+
orders.
4243

43-
**🔒 RLC Staking:** To run a task on the protocol (executing an application with protected data on a decentralized workerpool), you need to **lock RLC** in the protocol during the task period. In exchange, you receive **sRLC (staked RLC)**. Once the task is completed, you can recover the RLC that wasn't consumed for the task payment.
44+
**🔒 RLC Staking:** To run a task on the protocol (executing an application with
45+
protected data on a decentralized workerpool), you need to **lock RLC** in the
46+
protocol during the task period. In exchange, you receive **sRLC (staked RLC)**.
47+
Once the task is completed, you can recover the RLC that wasn't consumed for the
48+
task payment.
4449

4550
## 💰 Tokenomics & Ecosystem Metrics
4651

0 commit comments

Comments
 (0)