/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
core/scss/ui/_chat.scss
43 строки
793 B
Bartosz-Do
Wire stylelint into the SCSS lint pipeline (#2794)
06 авг 2026, 01:46
Не верифицирован
06 авг 2026, 01:46
9cc9a36
Код
Авторство
О чём код?
@use '../config' as *; .chat { --chat-bubbles-gap: #{$chat-bubbles-gap}; --chat-bubble-padding: #{$chat-bubble-padding}; --chat-bubble-title-margin-bottom: #{$chat-bubble-title-margin-bottom}; } .chat-bubbles { display: flex; flex-direction: column; gap: var(--chat-bubbles-gap); } .chat-bubble { position: relative; padding: var(--chat-bubble-padding); background: var(--bg-surface-secondary); @include border-radius(var(--border-radius-lg)); } .chat-bubble-me { background-color: var(--primary-lt); box-shadow: none; } .chat-bubble-title { margin-bottom: var(--chat-bubble-title-margin-bottom); } .chat-bubble-author { font-weight: 600; } .chat-bubble-date { color: var(--secondary); } .chat-bubble-body { > *:last-child { margin-bottom: 0; } }