diff options
Diffstat (limited to 'src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue')
-rw-r--r-- | src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue b/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue index 3cc0c0b..3e2f437 100644 --- a/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue +++ b/src/tools/ipv4-subnet-calculator/ipv4-subnet-calculator.vue @@ -96,16 +96,14 @@ function switchToBlock({ count = 1 }: { count?: number }) { <n-table> <tbody> <tr v-for="{ getValue, label, undefinedFallback } in sections" :key="label"> - <td> - <n-text strong> - {{ label }} - </n-text> + <td font-bold> + {{ label }} </td> <td> <SpanCopyable v-if="getValue(networkInfo)" :value="getValue(networkInfo)" /> - <n-text v-else depth="3"> + <span v-else op-70> {{ undefinedFallback }} - </n-text> + </span> </td> </tr> </tbody> |