-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathstyles.less
53 lines (46 loc) · 891 Bytes
/
styles.less
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
& {
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
* {
box-sizing: border-box;
}
.dp-date-wrapper {
display: flex;
flex-direction: column;
height: calc(100vh - 72px);
overflow: hidden;
margin: 0 -20px;
padding: 0 20px;
.dp-date-input-container {
min-height: 85px;
display: flex;
justify-content: center;
padding: 20px 0;
background: white;
z-index: 10;
&.dp-inline {
min-height: 360px;
}
.dp-form-item {
display: flex;
flex-direction: column;
.dp-validations {
color: red;
font-size: 12px;
}
}
}
dp-config-form {
display: block;
flex: 1;
overflow: auto;
margin: 0 -20px;
padding: 0 20px;
margin-bottom: 120px;
}
}
}