mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-26 23:09:13 +08:00
A follow-up to #31343. ``` WARNING: Sass's behavior for declarations that appear after nested rules will be changing to match the behavior specified by CSS in an upcoming version. To keep the existing behavior, move the declaration above the nested rule. To opt into the new behavior, wrap the declaration in `& {}`. More info: https://sass-lang.com/d/mixed-decls ```
14 lines
292 B
SCSS
Vendored
14 lines
292 B
SCSS
Vendored
.chat-thread-header-unread-indicator,
|
|
.chat-thread-list-item-unread-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0.21em 0.42em;
|
|
min-width: 0.6em;
|
|
align-self: center;
|
|
|
|
@include chat-unread-indicator {
|
|
width: auto;
|
|
height: auto;
|
|
}
|
|
}
|