discourse/app/assets/stylesheets/mobile/components/user-stream-item.scss
Joffrey JAFFEUX 174d392e5a
DEV: adds prettier (#5956)
Run `prettier --write "app/assets/stylesheets/**/*.scss" "plugins/**/*.scss"` after making sure you installed it with `yarn`

It's recommended to configure your editor to run prettier on file save.
2018-06-08 11:49:31 +02:00

36 lines
732 B
SCSS

// Mobile styles for "user-stream-item" component
.user-stream {
// DEPRECATION:
// The ".item" class should be eventually removed because it's too generic.
// Once ".item" has been removed, ".user-stream-item" can replace
// ".user-stream" as the top-level selector on this file as all other
// selectors below are its children
.item,
.user-stream-item {
padding: 20px 0 15px 0;
}
.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;
}
}
.topic-statuses {
float: left;
}
}