layout.scss
1.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
.row-height {
display: table;
table-layout: fixed;
height: 100%;
width: 100%;
@media (max-width: $screen-sm) {
display: block;
}
// @media (min-width: $screen-sm + 1) {
// height: $hLine * 2;
// }
// @media (min-width: $screen-md + 1) {
// height: $hLine * 2;
// }
}
.col-height {
display: table-cell;
float: none;
height: 100%;
vertical-align: top;
}
.col-height--align-bottom {
vertical-align: bottom;
}
.inside {
margin-top: 20px;
margin-bottom: 20px;
}
.inside-full-height {
height: 100%;
margin-top: 0;
margin-bottom: 0;
@media (max-width: $screen-sm) {
border: 1px solid;
border-radius: 3px;
padding: 20px;
margin: 10px 0;
@each $category, $color in $categories {
.#{$category} & {
border-color: $color;
}
}
}
}
.has-error {
border-color: #FF0000;
border-width: 1px;
}
.error-message {
color: #ff4431
}
.modal-termos-uso {
height: 500px;
}
.modal-termos-uso-body {
padding: 30px;
.modal-termos-uso-inner {
padding: 30px;
background-color: lightgray;
}
.modal-termos-uso-header{
border-bottom: none;
padding: 0px;
min-height: 10px;
}
}
.modal-header {
border-bottom: none;
padding: 0px;
}