14 lines
316 B
SCSS
14 lines
316 B
SCSS
.bubble {
|
|
background-color: #ffffff;
|
|
box-shadow: 0px 4px 6px 0px #00000017;
|
|
border-radius: 8px 24px 24px 24px;
|
|
// max-width: calc(100% - 35px);
|
|
width: fit-content;
|
|
overflow: hidden;
|
|
|
|
&.own {
|
|
background: linear-gradient(90deg, #3b82f6 0%, #4f46e5 100%);
|
|
border-radius: 24px 8px 24px 24px;
|
|
}
|
|
}
|