feat: Increase the width of the message bubble (#2235)
* feat: Increase the width of the message bubble Co-authored-by: Nithin David Thomas <webofnithin@gmail.com>
This commit is contained in:
parent
a33617cadd
commit
a216297ce1
1 changed files with 3 additions and 2 deletions
|
@ -132,7 +132,6 @@
|
||||||
|
|
||||||
.bubble {
|
.bubble {
|
||||||
@include bubble-with-types;
|
@include bubble-with-types;
|
||||||
max-width: 50rem;
|
|
||||||
text-align: left;
|
text-align: left;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
|
|
||||||
|
@ -236,7 +235,9 @@
|
||||||
|
|
||||||
.wrap {
|
.wrap {
|
||||||
@include margin($zero $space-normal);
|
@include margin($zero $space-normal);
|
||||||
max-width: 69%;
|
|
||||||
|
--bubble-max-width: 49.6rem;
|
||||||
|
max-width: Min(var(--bubble-max-width), 85%);
|
||||||
|
|
||||||
.sender--name {
|
.sender--name {
|
||||||
font-size: $font-size-mini;
|
font-size: $font-size-mini;
|
||||||
|
|
Loading…
Reference in a new issue