TelegramPWA/src/components/middle/MessageListBotInfo.module.scss

37 lines
652 B
SCSS

.root {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.bot-info {
max-width: 80%;
display: flex;
flex-direction: column;
background-color: var(--color-background);
color: var(--color-text);
font-size: calc(var(--message-text-size, 1rem) - 0.0625rem);
line-height: 1.75;
border-radius: var(--border-radius-messages);
overflow: hidden;
text-align: initial;
}
.bot-info-description {
padding: 0.5rem 1rem;
text-wrap: pretty;
}
.bot-info-title {
font-weight: var(--font-weight-medium);
margin-bottom: 0.25rem;
}
.media {
max-width: 100%;
height: auto !important;
}