-
Notifications
You must be signed in to change notification settings - Fork 9
/
responsive.css
81 lines (66 loc) · 1.54 KB
/
responsive.css
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
@media screen and (max-width: 1200px) {
/* abaixo de 1200 vai aplicar isso */
.app-container .sales-overview-container {
flex-direction: column;
}
.sales-overview-container .pie-chart-card {
width: 100%;
margin: 50px 0;
}
.app-container .sales-by-date-container {
height: 540px;
}
.sales-by-date-container .sales-by-date-data {
flex-direction: column;
align-items: flex-start;
}
.sales-by-date-data .sales-by-date-quantity-container {
margin-top: 10px;
margin-bottom: 50px;
}
.sales-by-date-data .sales-by-date-chart {
width: 100%;
}
.sales-overview-container .sales-summary-container {
width: 100%;
}
}
@media screen and (max-width: 992px) {
/* abaixo de 992 vai aplicar isso */
#root .app-container {
padding: 0 10px;
}
.sales-summary-container .sales-summary-card:nth-of-type(3) {
margin-bottom: 45px;
}
}
@media screen and (max-width: 768px) {
/* abaixo de 768 vai aplicar isso */
.filter-container.base-card {
flex-direction: column;
height: 150px;
}
.filter-container .filter-input {
margin-top: 20px;
margin-left: 20px;
width: 100%;
}
}
@media screen and (max-width: 576px) {
/* abaixo de 576 vai aplicar isso */
.sales-overview-container .sales-summary-container {
flex-direction: column;
}
.sales-summary-container .sales-summary-card {
width: 100%;
}
}
.sales-table-container {
overflow-x: auto;
}
.sales-table-container table thead th {
padding: 10px;
}
.sales-table-container table tbody td {
padding: 10px;
}