From 820aff3d833a5d5569fc3841cd21af2a492110d1 Mon Sep 17 00:00:00 2001 From: Anatoly Kopyl Date: Sun, 22 Sep 2024 15:24:55 +0300 Subject: [PATCH] Blob --- components/about-company.vue | 39 +++++++++++++++- components/k-nav.vue | 4 +- package-lock.json | 89 ++++++++++++++++++++++++++++++++++++ package.json | 1 + 4 files changed, 130 insertions(+), 3 deletions(-) diff --git a/components/about-company.vue b/components/about-company.vue index 00284b8..e9eacd3 100644 --- a/components/about-company.vue +++ b/components/about-company.vue @@ -1,9 +1,20 @@ @@ -50,4 +72,19 @@ height: 100%; object-fit: cover; } + +.about__blob-wrapper { + position: fixed; + top: 0; + left: 0; + z-index: -1; +} + +.about__blob { + width: 300px; + height: 300px; + border-radius: 999px; + filter: blur(96px); + transform: translate(-50%, -50%); +} diff --git a/components/k-nav.vue b/components/k-nav.vue index da79e4b..6c624e1 100644 --- a/components/k-nav.vue +++ b/components/k-nav.vue @@ -3,13 +3,13 @@ import PureCitySvg from '~/assets/pure-city.svg'