diff options
author | 2023-05-27 17:36:15 +0200 | |
---|---|---|
committer | 2023-05-27 17:53:13 +0200 | |
commit | 4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9 (patch) | |
tree | fe107c22780cb88fe0839a7940c0a26a1f58d76a /src/components/ColoredCard.vue | |
parent | 34d8e5ce2ca5d7a27c19ee2cb704bbfd3a215b29 (diff) | |
download | it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.tar.gz it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.tar.zst it-tools-4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9.zip |
refactor(ui): removed all n-space
Diffstat (limited to 'src/components/ColoredCard.vue')
-rw-r--r-- | src/components/ColoredCard.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/ColoredCard.vue b/src/components/ColoredCard.vue index 911d1e0..9aaf167 100644 --- a/src/components/ColoredCard.vue +++ b/src/components/ColoredCard.vue @@ -1,8 +1,6 @@ <template> <c-card class="colored-card"> - <n-space justify="space-between" align="center"> - <n-icon class="icon" size="40" :component="icon" /> - </n-space> + <n-icon class="icon" size="40" :component="icon" /> <n-h3 class="title"> <n-ellipsis>{{ title }}</n-ellipsis> </n-h3> |