mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
22 lines
352 B
SCSS
22 lines
352 B
SCSS
// Mobile styles for "user-stream-item" component
|
|
.user-stream {
|
|
.name {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.notification {
|
|
&.unread {
|
|
background-color: dark-light-choose(
|
|
$tertiary-low,
|
|
srgb-scale($tertiary, $secondary, 15%)
|
|
);
|
|
}
|
|
}
|
|
|
|
.group-member-info {
|
|
.name {
|
|
vertical-align: inherit;
|
|
}
|
|
}
|
|
}
|