29 lines
543 B
CSS
29 lines
543 B
CSS
/* ImageBubble 图片气泡样式 */
|
|
|
|
.bubble {
|
|
max-width: 220px;
|
|
max-height: 220px;
|
|
border-radius: var(--radius-lg, 12px);
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
background: var(--color-bubble-background, #fff);
|
|
}
|
|
|
|
.image {
|
|
display: block;
|
|
width: 100%;
|
|
height: auto;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.errorFallback {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 220px;
|
|
height: 220px;
|
|
background: var(--color-bubble-background, #fff);
|
|
color: var(--color-text-secondary, #9e9e9e);
|
|
font-size: 24px;
|
|
}
|