@linzjs/lui 16.1.1 → 16.2.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/CHANGELOG.md +21 -0
- package/dist/components/LuiFormElements/LuiTextInput/LuiTextInput.d.ts +1 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/lui.css +1 -0
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +2 -2
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Global/Layout/Layout.scss +4 -0
- package/package.json +1 -1
|
@@ -39,6 +39,10 @@ body {
|
|
|
39
39
|
'Content'
|
|
40
40
|
'Footer';
|
|
41
41
|
grid-template-rows: auto 1fr auto;
|
|
42
|
+
grid-template-columns: minmax(
|
|
43
|
+
0,
|
|
44
|
+
1fr
|
|
45
|
+
); //Good catch from Darrell – our tables were blowing out and this fixes it https://css-tricks.com/preventing-a-grid-blowout/
|
|
42
46
|
}
|
|
43
47
|
|
|
44
48
|
.Content {
|
package/package.json
CHANGED