material-inspired-component-library 6.0.5 → 6.0.7
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/components/appbar/index.scss +2 -4
- package/components/card/README.md +15 -6
- package/components/card/index.scss +183 -71
- package/components/list/index.scss +1 -1
- package/dist/appbar.css +1 -1
- package/dist/card.css +1 -1
- package/dist/layout.css +1 -1
- package/dist/list.css +1 -1
- package/dist/micl.css +1 -1
- package/dist/navigationrail.css +1 -1
- package/dist/sidesheet.css +1 -1
- package/docs/card.html +23 -10
- package/docs/docs.css +1 -1
- package/docs/micl.css +1 -1
- package/docs/stepper.html +1 -1
- package/foundations/layout/index.scss +4 -4
- package/package.json +1 -1
package/docs/stepper.html
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
.docs-icon {
|
|
20
20
|
inline-size: 32px;
|
|
21
21
|
block-size: 32px;
|
|
22
|
-
margin: var(--md-
|
|
22
|
+
margin: var(--md-comp-card-padding-inline);
|
|
23
23
|
border-radius: 16px;
|
|
24
24
|
background-color: var(--md-sys-color-primary);
|
|
25
25
|
color: var(--md-sys-color-on-primary);
|
|
@@ -98,7 +98,7 @@ $md-sys-pane-spacer: 24px;
|
|
|
98
98
|
.micl-body {
|
|
99
99
|
display: flex;
|
|
100
100
|
flex-direction: row;
|
|
101
|
-
gap: var(--md-sys-
|
|
101
|
+
gap: var(--md-sys-comp-margin, 8px) var(--md-sys-layout-pane-spacer);
|
|
102
102
|
background-color: inherit;
|
|
103
103
|
|
|
104
104
|
&.micl-body--split:has(> .micl-pane:nth-child(2)) {
|
|
@@ -122,13 +122,13 @@ $md-sys-pane-spacer: 24px;
|
|
|
122
122
|
}
|
|
123
123
|
&:has(> .micl-card-elevated, > .micl-card-filled, > .micl-card-outlined),
|
|
124
124
|
&> *:has(> .micl-card-elevated, > .micl-card-filled, > .micl-card-outlined) {
|
|
125
|
-
gap: var(--md-
|
|
125
|
+
gap: var(--md-comp-card-margin, 8px);
|
|
126
126
|
}
|
|
127
127
|
&> .micl-pane__columns {
|
|
128
128
|
display: flex;
|
|
129
129
|
|
|
130
130
|
&:has(> .micl-pane__column > .micl-card-elevated, > .micl-pane__column > .micl-card-filled, > .micl-pane__column > .micl-card-outlined) {
|
|
131
|
-
gap: var(--md-
|
|
131
|
+
gap: var(--md-comp-card-margin, 8px);
|
|
132
132
|
}
|
|
133
133
|
&> .micl-pane__column {
|
|
134
134
|
display: flex;
|
|
@@ -138,7 +138,7 @@ $md-sys-pane-spacer: 24px;
|
|
|
138
138
|
background-color: inherit;
|
|
139
139
|
|
|
140
140
|
&:has(> .micl-card-elevated, > .micl-card-filled, > .micl-card-outlined) {
|
|
141
|
-
row-gap: var(--md-
|
|
141
|
+
row-gap: var(--md-comp-card-margin, 8px);
|
|
142
142
|
}
|
|
143
143
|
&.micl-pane__column--fixed {
|
|
144
144
|
flex: 0 0 auto;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "material-inspired-component-library",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.7",
|
|
4
4
|
"description": "The Material-Inspired Component Library (MICL) offers a collection of beautifully crafted components leveraging native HTML markup, designed to align with the Material Design 3 guidelines.",
|
|
5
5
|
"author": "MICL Hermana <micl.hermana@proton.me> (https://github.com/henkpb/micl)",
|
|
6
6
|
"license": "MIT",
|