@beterdichtbij/component-library 0.42.1 → 0.42.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bd-component-lib.cjs.js +32 -32
- package/dist/bd-component-lib.es.js +2875 -2877
- package/dist/bd-component-lib.umd.js +32 -32
- package/dist/scss/_modal.scss +15 -7
- package/package.json +1 -1
package/dist/scss/_modal.scss
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
display: flex;
|
|
10
10
|
align-items: center;
|
|
11
11
|
justify-content: space-between;
|
|
12
|
+
// Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
|
|
13
|
+
border-radius: inherit;
|
|
12
14
|
|
|
13
15
|
button.btn-close {
|
|
14
16
|
top: 20px;
|
|
@@ -29,17 +31,18 @@
|
|
|
29
31
|
background-color: $blue-text;
|
|
30
32
|
display: inline-block;
|
|
31
33
|
padding: 4px;
|
|
32
|
-
border-radius: 50%;
|
|
34
|
+
border-radius: 50%;
|
|
33
35
|
|
|
34
36
|
path {
|
|
35
|
-
|
|
37
|
+
fill: $color-white;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
&:hover {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
background-color: $color-lightblue;
|
|
42
|
+
|
|
43
|
+
path {
|
|
44
|
+
fill: $blue-text;
|
|
45
|
+
}
|
|
43
46
|
}
|
|
44
47
|
}
|
|
45
48
|
}
|
|
@@ -73,10 +76,13 @@
|
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
.modal-body {
|
|
79
|
+
border: 0px;
|
|
80
|
+
// Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
|
|
81
|
+
border-radius: inherit;
|
|
82
|
+
|
|
76
83
|
@include media-breakpoint-up(md) {
|
|
77
84
|
padding: 15px 65px 30px 65px;
|
|
78
85
|
}
|
|
79
|
-
border: 0px;
|
|
80
86
|
|
|
81
87
|
p:last-of-type {
|
|
82
88
|
margin-bottom: 0;
|
|
@@ -91,6 +97,8 @@
|
|
|
91
97
|
|
|
92
98
|
.modal-footer {
|
|
93
99
|
justify-content: flex-start;
|
|
100
|
+
// Explicitly inherit border-radius from .modal-dialog set by Bootstrap.
|
|
101
|
+
border-radius: inherit;
|
|
94
102
|
|
|
95
103
|
button {
|
|
96
104
|
margin: 0 2px;
|