32 lines
353 B
CSS
32 lines
353 B
CSS
.wrapper {
|
|
width: 100%;
|
|
}
|
|
|
|
.center {
|
|
width: 70%;
|
|
}
|
|
|
|
.user-message-trucated-text {
|
|
max-width: 60vw;
|
|
}
|
|
|
|
@media screen and (min-width: 992px) {
|
|
.user-message-trucated-text {
|
|
max-width: 30vw;
|
|
}
|
|
|
|
.center {
|
|
width: 40%;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 576px) {
|
|
.user-message-trucated-text {
|
|
max-width: 70vw;
|
|
}
|
|
|
|
.center {
|
|
width: 100%;
|
|
}
|
|
}
|