-
Notifications
You must be signed in to change notification settings - Fork 78
/
app.wxss
55 lines (55 loc) · 874 Bytes
/
app.wxss
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
page {
background: #F6F6F6;
}
button {
margin: 15px;
}
.btn-group {
display: flex;
justify-content: space-between;
width: 100%;
}
.btn-group .btn:first-child {
margin-right: 0;
}
.btn {
flex-grow: 1;
}
.btn[type="primary"] {
color: #FFF;
background: #1ABCFE;
}
.btn[type="default"] {
color: #FFF;
background: #66C53A;
}
.input-value {
display: inline-block;
padding: 0 6px;
border: 1px solid #CCCCCC;
border-radius: 4px;
max-width: 3.5em;
font-size: 16px;
text-align: center;
}
.no-padding {
box-shadow: none !important;
padding: 0 !important;
margin: 20px 0 !important;
}
.footer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 25px;
}
.footer-image image {
height: 32px;
width: 158px;
}
.footer-text {
padding-top: 10px;
font-size: 14px;
color: #A2A2A2;
}