mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-26 06:44:23 +00:00
chore: remove less
This commit is contained in:
20
web/src/css/toast.css
Normal file
20
web/src/css/toast.css
Normal file
@@ -0,0 +1,20 @@
|
||||
.toast-list-container {
|
||||
@apply flex flex-col justify-start items-end fixed top-2 right-4 max-h-full;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.toast-list-container > .toast-wrapper {
|
||||
@apply flex flex-col justify-start items-start relative left-full invisible text-base cursor-pointer shadow-lg rounded bg-white mt-6 py-2 px-4;
|
||||
min-width: 6em;
|
||||
left: calc(100% + 32px);
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
.toast-list-container > .toast-wrapper.showup {
|
||||
@apply left-0 visible;
|
||||
}
|
||||
|
||||
.toast-list-container > .toast-wrapper.destory {
|
||||
@apply invisible;
|
||||
left: calc(100% + 32px);
|
||||
}
|
Reference in New Issue
Block a user