@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrachill/components",
3
- "version": "0.4.13",
3
+ "version": "0.4.15",
4
4
  "description": "Shared React components for the Extra Chill Platform.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -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 var(--border-radius-md, 8px) var(--border-radius-md, 8px) var(--border-radius-md, 8px);
157
- padding: var(--spacing-lg, 1.5rem) var(--spacing-md, 1rem);
158
- margin-bottom: var(--spacing-sm, 0.5rem);
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
  }