21 lines
359 B
SCSS
21 lines
359 B
SCSS
.image-placeholder {
|
|
width: 100%;
|
|
height: 100%;
|
|
&__empty {
|
|
height: 100%;
|
|
width: 100%;
|
|
background: linear-gradient(
|
|
0deg,
|
|
rgba(255, 255, 255, 0.2),
|
|
rgba(255, 255, 255, 0.2)
|
|
);
|
|
&.dark {
|
|
background: linear-gradient(
|
|
0deg,
|
|
rgba(18, 18, 18, 0.2),
|
|
rgba(18, 18, 18, 0.2)
|
|
);
|
|
}
|
|
}
|
|
}
|