mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
174d392e5a
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.
24 lines
546 B
SCSS
24 lines
546 B
SCSS
// Desktop 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 8px 15px 8px;
|
|
}
|
|
|
|
.time,
|
|
.delete-info {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.notification {
|
|
&.unread {
|
|
background-color: $tertiary-low;
|
|
}
|
|
}
|
|
}
|