birdpaper-ui
Version:
一个通用的 vue3 UI组件库。A common vue3 UI component library.
38 lines (33 loc) • 560 B
text/less
.bp-image {
position: relative;
&-img {
vertical-align: middle;
aspect-ratio: 1 / 1;
max-width: 100%;
}
&-loading,
&-error {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
color: @gary-7;
background-color: @primary-0;
font-size: 13px;
.no-select;
.bp-icon-image-2-fill {
fill: @gary-7;
}
}
}
.bp-image-auto-ratio {
.bp-image-img {
aspect-ratio: auto;
}
}