datastake-daf 0.6.136 → 0.6.138
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/dist/components/index.js
CHANGED
|
@@ -20204,7 +20204,7 @@ function SDGWidget(_ref) {
|
|
|
20204
20204
|
})
|
|
20205
20205
|
}));
|
|
20206
20206
|
}
|
|
20207
|
-
const SDGContainer = dt.div(_templateObject$8 || (_templateObject$8 = _taggedTemplateLiteral(["\n\tdisplay: grid;\n\tgrid-template-columns: repeat(auto-fit, minmax(
|
|
20207
|
+
const SDGContainer = dt.div(_templateObject$8 || (_templateObject$8 = _taggedTemplateLiteral(["\n\tdisplay: grid;\n\tgrid-template-columns: repeat(auto-fit, minmax(80px, 1fr));\n\tgap: 8px;\n\n\t.sdg-item {\n\t\theight: 80px;\n\t\twidth: 80px;\n\t\tborder-radius: 8px;\n\t\tbackground-size: cover;\n\t\tbackground-position: center;\n\t\tbackground-repeat: no-repeat;\n\t}\n\n\t.sdg-item-content {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\theight: 100%;\n\t\tcolor: white;\n\t\ttext-align: center;\n\t}\n"])));
|
|
20208
20208
|
|
|
20209
20209
|
var Style$w = dt.div`
|
|
20210
20210
|
border: 1px solid var(--base-gray-40);
|
package/package.json
CHANGED
|
@@ -32,12 +32,12 @@ export default function SDGWidget({
|
|
|
32
32
|
|
|
33
33
|
const SDGContainer = styled.div`
|
|
34
34
|
display: grid;
|
|
35
|
-
grid-template-columns: repeat(auto-fit, minmax(
|
|
35
|
+
grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
|
|
36
36
|
gap: 8px;
|
|
37
37
|
|
|
38
38
|
.sdg-item {
|
|
39
|
-
height:
|
|
40
|
-
width:
|
|
39
|
+
height: 80px;
|
|
40
|
+
width: 80px;
|
|
41
41
|
border-radius: 8px;
|
|
42
42
|
background-size: cover;
|
|
43
43
|
background-position: center;
|