blob: 7800ab62bc5a0e29159fdcc7c87c0cc984947de9 (
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
|
// ------------------------------------------------------------------
// Layout
// ------------------------------------------------------------------
.o_MailTemplate {
display: flex;
flex: 0 0 auto;
align-items: center;
}
.o_MailTemplate_button {
padding-top: map-get($spacers, 0);
padding-bottom: map-get($spacers, 0);
}
.o_MailTemplate_name {
margin-inline-start: map-get($spacers, 2);
}
// ------------------------------------------------------------------
// Style
// ------------------------------------------------------------------
.o_MailTemplate_text {
color: gray('500');
font-style: italic;
}
|