blob: 18e3114952c649a457a8c528e2d9291c23565499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// ------------------------------------------------------------------
// Layout
// ------------------------------------------------------------------
.o_NotificationList {
display: flex;
flex-flow: column;
overflow: auto;
&.o-empty {
justify-content: center;
}
}
.o_NotificationList_noConversation {
display: flex;
align-items: center;
justify-content: center;
padding: map-get($spacers, 4) map-get($spacers, 2);
}
.o_NotificationList_separator {
flex: 0 0 auto;
width: map-get($sizes, 100);
}
// ------------------------------------------------------------------
// Style
// ------------------------------------------------------------------
.o_NotificationList_separator {
border-bottom: $border-width solid $border-color;
}
.o_NotificationList_noConversation {
color: $text-muted;
}
|