mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
9 lines
135 B
CSS
9 lines
135 B
CSS
.alert-visible {
|
|
opacity: 1;
|
|
transition: all 250ms linear;
|
|
}
|
|
|
|
.alert-hidden {
|
|
opacity: 0;
|
|
transition: all 250ms ease-out 2s;
|
|
}
|