diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-08-09 14:29:43 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-08-09 14:29:43 +0700 |
| commit | 3269cca77eae6c9f5508c4a64a1405ed3d9007fb (patch) | |
| tree | f1d4336ec2c5a0e83fa2a1e209e029da89c209db /src/core/components/layouts/BasicLayout.module.css | |
| parent | 4b74228b697ba5a04e8b8850d769a676070df4ca (diff) | |
<iman> add highligth button whatsapp
Diffstat (limited to 'src/core/components/layouts/BasicLayout.module.css')
| -rw-r--r-- | src/core/components/layouts/BasicLayout.module.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/components/layouts/BasicLayout.module.css b/src/core/components/layouts/BasicLayout.module.css new file mode 100644 index 00000000..b89aca9f --- /dev/null +++ b/src/core/components/layouts/BasicLayout.module.css @@ -0,0 +1,13 @@ +.overlay-highlight { + @apply fixed top-0 left-0 w-full h-full bg-[#4FB84A]/50 z-[900]; + animation: closeOverlay 10s forwards; + } + + @keyframes closeOverlay { + from { + clip-path: circle(100%); + } + to { + clip-path: circle(var(--button-radius) at var(--button-x) var(--button-y)); + } + } |
