mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
have many of the primary interactions working
This commit is contained in:
16
Management.Web/Shared/Components/Modal.razor.css
Normal file
16
Management.Web/Shared/Components/Modal.razor.css
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
.show-modal {
|
||||
animation: enter 250ms;
|
||||
display: block;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
@keyframes enter {
|
||||
from {
|
||||
display: block;
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user