blob: 01cdc4bb316011994cf7d0cd8dd4d1d98b4dbeb0 (
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
38
39
40
41
42
43
44
45
46
|
@use "bulma/bulma";
.jwm-new-mail > .media-content {
@extend .has-text-weight-semibold;
}
dl.jwm-mail-header {
$left-xx: 130px;
& dt {
font-weight: bold;
@media screen and (min-width: bulma.$desktop) {
float: left;
clear: left;
text-align: right;
width: $left-xx;
}
}
& dd {
@media screen and (min-width: bulma.$desktop) {
margin-left: #{$left-xx + 10px};
}
margin-left: bulma.$size-7;
}
}
.jwm-mail {
@extend .box;
}
.jwm-mail-header {
@extend .block;
}
.jwm-mail-body {
@extend .block;
}
iframe.jwm-mail-body-text-html {
width: 100%;
height: 400px;
}
.jwm-mail-body-text-plain {
@extend .block;
}
|