diff --git a/app.vue b/app.vue index ca6197e..f7c0ef7 100644 --- a/app.vue +++ b/app.vue @@ -58,11 +58,17 @@ const about = (pagesData.value as ApiPagesType[]).find(el => el.slug == 'about')
{{ about?.content }}
+
+ Купить прямо сейчас +
+ +
+
diff --git a/assets/main.scss b/assets/main.scss index a9f7f74..2bded44 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -24,20 +24,27 @@ body { @apply col-span-8 flex justify-between } -a[href^="/#"] { +a[href^="/#"]:not([class]) { @apply underline decoration-dotted underline-offset-4 decoration-neutral-500 } .block { @apply py-10; + &-content { - @apply col-span-6 + @apply col-span-6 h-full flex flex-col justify-between } + &-title { @apply text-5xl text-black } + &-image { @apply col-span-6 bg-slate-400; min-height: 50vh; } + + &-btn { + @apply rounded-full bg-primary-500 px-10 py-2 inline-block text-lg font-bold shadow-lg + } } \ No newline at end of file