@extrachill/components 0.4.13 → 0.4.15
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/package.json +1 -1
- package/styles/components.scss +3 -15
package/package.json
CHANGED
package/styles/components.scss
CHANGED
|
@@ -153,9 +153,9 @@
|
|
|
153
153
|
display: grid;
|
|
154
154
|
background: var(--background-color, #fff);
|
|
155
155
|
border: 1px solid var(--border-color, #ddd);
|
|
156
|
-
border-radius: 0
|
|
157
|
-
padding:
|
|
158
|
-
margin-bottom:
|
|
156
|
+
border-radius: 0 0 var(--border-radius-md, 8px) var(--border-radius-md, 8px);
|
|
157
|
+
padding: 0;
|
|
158
|
+
margin-bottom: 0;
|
|
159
159
|
position: relative;
|
|
160
160
|
z-index: 1;
|
|
161
161
|
box-sizing: border-box;
|
|
@@ -506,18 +506,6 @@
|
|
|
506
506
|
// Matches the established theme pattern: small phone screens go full-width,
|
|
507
507
|
// drop rounded corners, and reduce wasted side space.
|
|
508
508
|
@media screen and (max-width: 480px) {
|
|
509
|
-
.ec-block-shell {
|
|
510
|
-
background: var(--card-background, #f1f5f9);
|
|
511
|
-
border-radius: 0;
|
|
512
|
-
border-left: 0;
|
|
513
|
-
border-right: 0;
|
|
514
|
-
border-top: 1px solid var(--border-color, #ddd);
|
|
515
|
-
border-bottom: 1px solid var(--border-color, #ddd);
|
|
516
|
-
margin: 0;
|
|
517
|
-
max-width: 100%;
|
|
518
|
-
padding: var(--spacing-md, 1rem);
|
|
519
|
-
}
|
|
520
|
-
|
|
521
509
|
.ec-block-shell-header {
|
|
522
510
|
padding-bottom: var(--spacing-sm, 0.5rem);
|
|
523
511
|
}
|