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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
| /**
| * common
| * @author Tevin
| */
|
| @import "./sassMixin";
|
| .taro_page,
| page {
| font-size: 30px;
| color: #333;
| textarea {
| font-size: inherit;
| font-family: -apple-system-font, Helvetica Neue, sans-serif;
| }
| .at-button {
| display: inline-block;
| &.at-button--full {
| display: flex;
| }
| &.at-button--primary {
| color: #FFF;
| border: 1PX solid #2093df;
| background: #2093df;
| &.btn-danger {
| border: 1PX solid #FF5722;
| background: #FF5722;
| }
| }
| }
| .at-input-number {
| .weui-input {
| height: 100%;
| border: none;
| font-size: 30px;
| }
| }
| .at-float-layout {
| .at-float-layout__container {
| @include flexbox(flex, flex-start flex-start, column);
| width: 100%;
| max-height: 80%;
| height: 80%;
| .layout-header {
| width: 100%;
| height: 84px;
| box-sizing: border-box;
| }
| .layout-body {
| width: 100%;
| height: calc(100% - 84px);
| max-height: 100%;
| font-size: 30px;
| box-sizing: border-box;
| &:first-child {
| height: 100%;
| }
| }
| .layout-body__content {
| width: 100%;
| max-height: 100%;
| }
| }
| }
| .at-list {
| position: unset;
| }
| .weui-picker {
| font-size: 30px;
| .weui-picker__hd {
| font-size: 30px;
| }
| }
| .at-tabs.at-tabs--horizontal {
| height: 100%;
| .at-tabs__header {
| height: 90px;
| line-height: 52px;
| }
| .at-tabs__body {
| height: calc(100% - 90px);
| font-size: 0;
| .at-tabs-pane {
| height: 100%;
| font-size: 30px;
| }
| }
| }
| .at-radio {
| .at-radio__option {
| padding-left: 0;
| }
| .at-radio__option-wrap {
| padding-left: 32px;
| }
| .at-radio__icon {
| visibility: visible;
| &.at-radio__icon--checked {
| .at-icon {
| background: #2093df;
| border-color: #2093df;
| }
| }
| .at-icon {
| color: #fff;
| border: #bbb 1px solid;
| border-radius: 50%;
| padding: 5px;
| }
| }
| &::before,
| &::after {
| display: none;
| }
| }
| }
|
| page {
| .at-tabs.at-tabs--horizontal {
| .at-tabs__body {
| .at-tabs-pane {
| margin-right: 0;
| }
| }
| }
| }
|
| .taro__toast,
| .taro__modal {
| word-break: break-word;
| }
|
|