@beterdichtbij/component-library 0.35.1 → 0.35.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/scss/_modal.scss +14 -3
- package/package.json +1 -1
package/dist/scss/_modal.scss
CHANGED
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
display: inline-block;
|
|
31
31
|
padding: 4px;
|
|
32
32
|
border-radius: 50%;
|
|
33
|
+
|
|
33
34
|
path {
|
|
34
35
|
fill: $color-white;
|
|
35
36
|
}
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
@include media-breakpoint-up(md) {
|
|
47
|
-
padding: 30px 65px
|
|
48
|
+
padding: 30px 65px 15px 65px;
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
@include media-breakpoint-down(md) {
|
|
@@ -73,9 +74,19 @@
|
|
|
73
74
|
|
|
74
75
|
.modal-body {
|
|
75
76
|
@include media-breakpoint-up(md) {
|
|
76
|
-
padding: 30px 65px;
|
|
77
|
+
padding: 15px 65px 30px 65px;
|
|
77
78
|
}
|
|
78
79
|
border: 0px;
|
|
80
|
+
|
|
81
|
+
p:last-of-type {
|
|
82
|
+
margin-bottom: 0;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:has(.modal-footer) .modal-body {
|
|
87
|
+
@include media-breakpoint-up(md) {
|
|
88
|
+
padding: 15px 65px;
|
|
89
|
+
}
|
|
79
90
|
}
|
|
80
91
|
|
|
81
92
|
.modal-footer {
|
|
@@ -94,7 +105,7 @@
|
|
|
94
105
|
}
|
|
95
106
|
|
|
96
107
|
@include media-breakpoint-up(md) {
|
|
97
|
-
padding: 30px 65px;
|
|
108
|
+
padding: 15px 65px 30px 65px;
|
|
98
109
|
}
|
|
99
110
|
|
|
100
111
|
@include media-breakpoint-down(md) {
|