@shortfuse/materialdesignweb 0.9.2 → 0.9.3

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/README.md CHANGED
@@ -5,6 +5,8 @@ Material Design for Web
5
5
 
6
6
  ![Version](https://badgen.net/npm/v/@shortfuse/materialdesignweb) ![License](https://badgen.net/npm/license/@shortfuse/materialdesignweb) ![MinZip](https://badgen.net/bundlephobia/minzip/@shortfuse/materialdesignweb) ![Dependents](https://badgen.net/npm/dependents/@shortfuse/materialdesignweb)
7
7
 
8
+ [![Chromium](https://github.com/clshortfuse/materialdesignweb/actions/workflows/test-chromium.yml/badge.svg)](https://github.com/clshortfuse/materialdesignweb/actions/workflows/test-chromium.yml) [![Firefox](https://github.com/clshortfuse/materialdesignweb/actions/workflows/test-firefox.yml/badge.svg)](https://github.com/clshortfuse/materialdesignweb/actions/workflows/test-firefox.yml) [![Webkit](https://github.com/clshortfuse/materialdesignweb/actions/workflows/test-webkit.yml/badge.svg)](https://github.com/clshortfuse/materialdesignweb/actions/workflows/test-webkit.yml)
9
+
8
10
  Live demo: https://clshortfuse.github.io/materialdesignweb/
9
11
 
10
12
  Quick links
@@ -87,7 +87,7 @@ export default Box
87
87
  display: grid;
88
88
  column-gap: 16px; /* Gutters */
89
89
  grid-auto-flow: row;
90
- grid-template-columns: repeat(1fr, 4);
90
+ grid-template-columns: repeat(4, 1fr);
91
91
  }
92
92
 
93
93
  :host([y="start"]) { align-items: flex-start; }
@@ -19,6 +19,8 @@ export default Box
19
19
  --mdw-ink: var(--mdw-color__on-surface);
20
20
  background-color: rgb(var(--mdw-bg));
21
21
  color: rgb(var(--mdw-ink));
22
+
23
+ overflow: auto;
22
24
  }
23
25
  `
24
26
  .autoRegister('mdw-pane');