14 lines
159 B
SCSS
14 lines
159 B
SCSS
|
img {
|
||
|
|
||
|
&.loaded {
|
||
|
opacity: 1!important;
|
||
|
transition: 0.6s ease-out!important;
|
||
|
}
|
||
|
|
||
|
&.lazy {
|
||
|
opacity: 0.6;
|
||
|
transition: 0.6s ease-out;
|
||
|
}
|
||
|
}
|
||
|
|