rsnext/test/integration/image-component/default/style.module.css
Steven 738a964ead
Fix style reset on image with placeholder=blur (#32680)
This PR is a follow up to PR #32623 to fix the remaining blur styles.

These are unlikely to be overridden by the user but this PR is necessary to make `placeholder=empty` (default behavior) and `placeholder=blur` end up with the same inline styles on the loaded image.

Related to https://github.com/vercel/next.js/issues/18398#issuecomment-997114428
2021-12-20 17:49:35 +00:00

18 lines
284 B
CSS

.displayFlex {
display: flex;
}
.mainContainer span {
margin: 57px;
}
.mainContainer img {
border-radius: 139px;
}
.overrideImg {
filter: opacity(0.5);
background-size: 30%;
background-image: url('data:image/png;base64,iVBORw0KGgo=');
background-position: 1px 2px;
}