mirror of https://github.com/portainer/portainer
10 lines
135 B
CSS
10 lines
135 B
CSS
|
.alert-visible {
|
||
|
opacity: 1;
|
||
|
transition: all 250ms linear;
|
||
|
}
|
||
|
|
||
|
.alert-hidden {
|
||
|
opacity: 0;
|
||
|
transition: all 250ms ease-out 2s;
|
||
|
}
|