diff options
| author | trisusilo48 <tri.susilo@altama.co.id> | 2024-08-28 09:56:07 +0700 |
|---|---|---|
| committer | trisusilo48 <tri.susilo@altama.co.id> | 2024-08-28 09:56:07 +0700 |
| commit | cecfba57469bb9a96c2b117cdb7dbfb0bd7eb86e (patch) | |
| tree | 10abe92077ae98cb47691de9dcf77ff96d563907 /src/core/components/layouts/BasicLayout.module.css | |
| parent | f3aa76b1810b3bc8b25bd02c76b50384893fc453 (diff) | |
| parent | 2dbd2eb810855b364b0fd529cc0e912cc303152b (diff) | |
Merge branch 'release' into CR/voucher_shiping
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)); + } + } |
