discourse/app/assets/stylesheets/common/admin/moderation_history.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

34 lines
517 B
SCSS

.moderation-history {
width: 100%;
th {
text-align: left;
}
td.date {
padding-right: 1em;
}
td,
th {
padding-bottom: 0.5em;
vertical-align: top;
}
.history-item-action {
.action-details {
margin: 1em 0;
color: $primary-medium;
white-space: pre-wrap;
line-height: $line-height-small;
width: 300px;
}
}
.history-item-actor {
a {
display: flex;
align-items: center;
span {
margin-left: 0.5em;
}
}
}
}