From a218a0ea2b330f0dcf1da72797acb035e1e4d506 Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Mon, 20 Sep 2021 17:37:10 +0200 Subject: [PATCH] feat(index): added image on main page --- assets/hello.svg | 127 +++++++++++++++++++++++++++++++++++++++++++++++ pages/index.vue | 48 ++++++++++++------ 2 files changed, 161 insertions(+), 14 deletions(-) create mode 100644 assets/hello.svg diff --git a/assets/hello.svg b/assets/hello.svg new file mode 100644 index 00000000..be6827df --- /dev/null +++ b/assets/hello.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pages/index.vue b/pages/index.vue index aec5432c..d85a81fa 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -1,8 +1,23 @@ @@ -52,17 +70,19 @@ export default class Index extends Vue { background: transparent !important; } -.v-card__title { - background: var(--v-primary-base) !important; - background: linear-gradient(90deg, rgba(37, 99, 108, 1) 0%, rgba(59, 149, 111, 1) 60%, rgba(71, 177, 113, 1) 100%) !important; - padding-left: 33px; -} +.tool-group { + .v-card__title { + background: var(--v-primary-base) !important; + background: linear-gradient(90deg, rgba(37, 99, 108, 1) 0%, rgba(59, 149, 111, 1) 60%, rgba(71, 177, 113, 1) 100%) !important; + padding-left: 33px; + } -.v-list-item { - padding-left: 31px; -} + .v-list-item { + padding-left: 31px; + } -.v-card__text { - padding: 0; + .v-card__text { + padding: 0; + } }