mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 12:17:59 +03:00
17 lines
218 B
SCSS
17 lines
218 B
SCSS
|
// main: _material.scss
|
||
|
|
||
|
@keyframes input-highlight {
|
||
|
0% {
|
||
|
left: 20%;
|
||
|
width: 20%;
|
||
|
}
|
||
|
99% {
|
||
|
width: 0;
|
||
|
left: 0;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|