forked from youngwind/vue-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.scss
51 lines (43 loc) · 962 Bytes
/
index.scss
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
@import "../base/mixin";
@import "../base/variable";
.v-select-wrapper {
@include font-dpr(20px);
}
.v-select-content {
display: none;
position: fixed;
left: 0;
bottom: 0;
z-index: 999;
width: 100%;
background-color: #fff;
@include font-dpr(20px);
.v-select-title {
display: flex;
justify-content: flex-end;
border-bottom: 4px solid $basic-border-color;
span {
padding: 0.2rem;
}
}
.v-select-options-wrapper {
margin: 0;
padding: 0;
max-height: 5rem;
overflow: auto;
text-align: center;
list-style: none;
li {
display: flex;
padding: 0.2rem 0;
border-bottom: 1px solid $basic-border-color;
span {
flex: 7;
}
i {
flex: 1;
color: $icon-basic-color;
}
}
}
}