// Messages .conversation { background: none !important; } .module-conversation-header { background: var(--background-primary-color); } .module-message { position: relative; display: inline-flex; flex-direction: row; align-items: center; max-width: 65%; &__text-error { font-style: italic; } &_text { font-size: 14px; line-height: 18px; text-align: start; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; white-space: pre-wrap; a { text-decoration: underline; } } &__container--incoming { &--opaque { background: var(--color-received-message-background); } &--transparent { background: none; } .module-message__text { color: var(--color-received-message-text); display: flex; flex-direction: row; align-items: center; svg { margin-right: var(--margins-xs); } a { text-decoration: underline; color: var(--color-received-message-text); } } } &__container--outgoing { &--opaque { background: var(--color-sent-message-background); } &--transparent { background: none; } .module-message__text { color: var(--color-sent-message-text); a { text-decoration: underline; color: var(--color-sent-message-text); } } } } .inbox { background: var(--background-primary-color); color: var(--text-primary-color); } .conversation { background: none; } @mixin session-h-title { @include fontAccentBold(); } h1 { @include session-h-title; color: var(--color-light-gray-color); font-size: 25px; margin: 0; &.active { color: var(--color-text); } } h2 { @include session-h-title; color: var(--color-text); font-size: 22px; text-align: center; } h3 { @include session-h-title; color: var(--color-text); font-size: 18px; padding-top: 22px; } h4 { @include session-h-title; color: var(--color-text); font-size: 17px; text-align: center; }