@leavittsoftware/web 2.36.0 → 2.36.1
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 +2 -2
- package/titanium/card/card.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leavittsoftware/web",
|
|
3
|
-
"version": "2.36.
|
|
3
|
+
"version": "2.36.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"files": [
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"url": "https://github.com/LeavittSoftware/titanium-elements/issues"
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://github.com/LeavittSoftware/titanium-elements/#readme",
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "4af657811e7fde8ac2d2c261092c5daa81eff642"
|
|
44
44
|
}
|
package/titanium/card/card.js
CHANGED
|
@@ -80,13 +80,13 @@ let TitaniumCard = class TitaniumCard extends LitElement {
|
|
|
80
80
|
:host([has-image]) {
|
|
81
81
|
grid:
|
|
82
82
|
'title image' min-content
|
|
83
|
-
'body
|
|
83
|
+
'body body' 1fr / 1fr auto;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
86
|
:host([has-image][has-footer]) {
|
|
87
87
|
grid:
|
|
88
88
|
'title image' min-content
|
|
89
|
-
'body
|
|
89
|
+
'body body' 1fr
|
|
90
90
|
'footer footer' auto / 1fr auto;
|
|
91
91
|
}
|
|
92
92
|
|