diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-08-15 08:11:05 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-08-15 08:11:05 +0000 |
| commit | 5c40f27bb865141a0c4086f03efa5b157b660f6d (patch) | |
| tree | 14a4eb1b7dd64d131023125e6dc72dff3c6cef1e /src/core/components/layouts/BasicLayout.module.css | |
| parent | f4410218351a2f263ca9bbae81f30e1531d40d59 (diff) | |
| parent | 949e654bec249177618c3efc1b63c50f174ea0ae (diff) | |
Merged in Feature/highlight-button-whatsapp (pull request #242)
Feature/highlight 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..4945c420 --- /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]/30 z-[900]; + animation: closeOverlay 1s forwards; + } + + @keyframes closeOverlay { + from { + clip-path: circle(100% at 50% 50%); + } + to { + clip-path: circle(var(--button-radius) at var(--button-x) var(--button-y)); + } + } |
