aboutsummaryrefslogtreecommitdiff
path: root/src/tools/http-status-codes/http-status-codes.vue
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-05-27 17:36:15 +0200
committerGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-05-27 17:53:13 +0200
commit4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9 (patch)
treefe107c22780cb88fe0839a7940c0a26a1f58d76a /src/tools/http-status-codes/http-status-codes.vue
parent34d8e5ce2ca5d7a27c19ee2cb704bbfd3a215b29 (diff)
downloadit-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.tar.gz
it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.tar.zst
it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.zip
refactor(ui): removed all n-space
Diffstat (limited to 'src/tools/http-status-codes/http-status-codes.vue')
-rw-r--r--src/tools/http-status-codes/http-status-codes.vue6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/tools/http-status-codes/http-status-codes.vue b/src/tools/http-status-codes/http-status-codes.vue
index 992fbc1..9f827f5 100644
--- a/src/tools/http-status-codes/http-status-codes.vue
+++ b/src/tools/http-status-codes/http-status-codes.vue
@@ -21,10 +21,8 @@
<n-h2> {{ category }} </n-h2>
<c-card v-for="{ code, description, name, type } of codes" :key="code" mb-2>
- <n-space align="center">
- <n-text strong text-lg> {{ code }} {{ name }} </n-text>
- </n-space>
- <n-text depth="3">{{ description }} {{ type !== 'HTTP' ? `For ${type}.` : '' }}</n-text>
+ <n-text strong block text-lg> {{ code }} {{ name }} </n-text>
+ <n-text block depth="3">{{ description }} {{ type !== 'HTTP' ? `For ${type}.` : '' }}</n-text>
</c-card>
</div>
</div>