addressCreateBar.less
1.43 KB
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
@charset "UTF-8";
@width_bar: 100%;
@height_bar: 140px;
@font_size_btn: 34px;
@border_radius_btn: 100px;
@background_color_bright: #FF725C;
@color_btn_bright: #fff;
@box_shadow_btn: 0 4px 12px #F8ADA2;
@width_btn_bright: 546px;
@height_btn_bright: 90px;
@width_btn_bright_img: 38px;
@height_btn_bright_img: 38px;
@padding_left_btn_bright_text: 37px;
.address-create-bar {
.box {
position: fixed;
bottom: 0;
z-index: 100;
background-color: transparent;
width: @width_bar;
height: @height_bar;
@supports (padding-bottom: env(safe-area-inset-bottom)) {
& {
padding-bottom: env(safe-area-inset-bottom);
}
}
.buttons {
.btn {
font-size: @font_size_btn;
border-radius: @border_radius_btn;
&.btn-bright {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background-color: @background_color_bright;
color: @color_btn_bright;
width: @width_btn_bright;
height: @height_btn_bright;
box-shadow: @box_shadow_btn;
margin: 0 auto;
.img {
width: @width_btn_bright_img;
height: @height_btn_bright_img;
}
.img + .text {
padding-left: @padding_left_btn_bright_text;
}
}
}
}
}
.placeholder-box {
// background-color: #ffffff;
background-color: transparent;
padding-top: 30px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
width: @width_bar;
height: @height_bar;
}
}