blob: f41de31cd306e1bd21f449811324385f32e87614 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@use 'iro-sass/src/props';
@use 'common';
@mixin styles {
.messageGroupList .columnSubject > .statusDisplay {
margin-block-start: -.1em;
margin-block-end: -.2em;
}
.messageSidebar {
background-color: props.get(common.$wcfContentBackground);
a:hover {
text-decoration: underline;
}
}
}
|