blob: 418ade6c1a01fad28b8f04c4e3117b479f4fb2cc (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
@use "bulma/bulma";
@use 'sass:list';
.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;
}
.jwm-page-container {
position: relative;
min-height: 100vh;
}
.jwm-content {
padding-bottom:
list.nth(bulma.$footer-padding, 1) +
list.nth(bulma.$footer-padding, 3) +
list.nth(bulma.$section-padding, 1) +
3rem;
}
.jwm-footer {
position: absolute;
bottom: 0;
width: 100%;
height: auto;
}
|