@extrachill/components 0.4.3 → 0.4.4
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 +9 -0
package/package.json
CHANGED
package/styles/components.scss
CHANGED
|
@@ -295,13 +295,18 @@
|
|
|
295
295
|
border-radius: 0;
|
|
296
296
|
border-left: 0;
|
|
297
297
|
border-right: 0;
|
|
298
|
+
border-top: 1px solid var(--border-color, #ddd);
|
|
299
|
+
border-bottom: 1px solid var(--border-color, #ddd);
|
|
298
300
|
margin: 0;
|
|
299
301
|
max-width: 100%;
|
|
300
302
|
padding: var(--spacing-md, 1rem);
|
|
301
303
|
}
|
|
302
304
|
|
|
303
305
|
.ec-panel {
|
|
306
|
+
background: var(--background-color, #fff);
|
|
304
307
|
border-radius: 0;
|
|
308
|
+
border-left: 0;
|
|
309
|
+
border-right: 0;
|
|
305
310
|
padding: var(--spacing-sm, 0.5rem) 0;
|
|
306
311
|
margin-left: calc(var(--spacing-md, 1rem) * -1);
|
|
307
312
|
margin-right: calc(var(--spacing-md, 1rem) * -1);
|
|
@@ -309,6 +314,10 @@
|
|
|
309
314
|
padding-right: var(--spacing-md, 1rem);
|
|
310
315
|
}
|
|
311
316
|
|
|
317
|
+
.ec-panel .ec-panel {
|
|
318
|
+
background: var(--card-background, #f1f5f9);
|
|
319
|
+
}
|
|
320
|
+
|
|
312
321
|
.ec-panel-header {
|
|
313
322
|
padding-bottom: var(--spacing-sm, 0.5rem);
|
|
314
323
|
}
|