mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 15:36:58 +00:00
18 lines
402 B
CSS
18 lines
402 B
CSS
.root {
|
|
@apply fixed bg-black bg-opacity-40 flex items-center inset-0 z-50 justify-center;
|
|
backdrop-filter: blur(0.8px);
|
|
-webkit-backdrop-filter: blur(0.8px);
|
|
}
|
|
|
|
.modal {
|
|
@apply bg-primary p-12 border border-accent-2 relative;
|
|
}
|
|
|
|
.modal:focus {
|
|
@apply outline-none;
|
|
}
|
|
|
|
.close {
|
|
@apply hover:text-gray-500 transition ease-in-out duration-150 focus:outline-none absolute right-0 top-0 m-6;
|
|
}
|