adding fade out on close

This commit is contained in:
Antoine M 2024-08-19 12:27:29 +02:00
parent d84eb3eca8
commit e50e9dd9be

View File

@ -14,6 +14,11 @@
backdrop-filter: brightness(50%) blur(1px);
overflow-y: auto;
animation: lightboxIn 0.5s;
transition: opacity 0.3s;
&.fade-out {
opacity: 0;
}
&--inactive {
@apply hidden;