@greghowe79/the-lib 1.2.3 → 1.2.5
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.
|
@@ -41,6 +41,7 @@ const Modal = qwik.component$(({ title, open, primaryButtonLabel, secondaryButto
|
|
|
41
41
|
}),
|
|
42
42
|
/* @__PURE__ */ jsxRuntime.jsx("div", {
|
|
43
43
|
class: "modal-body",
|
|
44
|
+
tabIndex: 0,
|
|
44
45
|
children: /* @__PURE__ */ jsxRuntime.jsx(qwik.Slot, {})
|
|
45
46
|
}),
|
|
46
47
|
/* @__PURE__ */ jsxRuntime.jsxs("div", {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
const styles = ".steps-container {\r\n display: grid;\r\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\r\n padding: 2rem;\r\n color: white;\r\n justify-items: center;\r\n max-width: 1000px;\r\n font-family: 'Roboto Condensed', sans-serif;\r\n}\r\n\r\n.step {\r\n text-align: center;\r\n max-width:
|
|
2
|
+
const styles = ".steps-container {\r\n display: grid;\r\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\r\n padding: 2rem;\r\n color: white;\r\n justify-items: center;\r\n max-width: 1000px;\r\n font-family: 'Roboto Condensed', sans-serif;\r\n}\r\n\r\n.step {\r\n text-align: center;\r\n max-width: 300px;\r\n margin: 20px;\r\n padding: 20px;\r\n border-radius: 8px;\r\n background: #333;\r\n background: linear-gradient(159deg, rgba(51, 51, 51, 1) 22%, rgba(0, 149, 174, 1) 100%, rgba(51, 51, 51, 1) 100%);\r\n box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);\r\n transition:\r\n transform 0.2s ease,\r\n box-shadow 0.2s ease;\r\n}\r\n\r\n.step:hover {\r\n transform: translateY(-5px);\r\n box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);\r\n}\r\n\r\n.step :global(svg) {\r\n width: 150px;\r\n height: 150px;\r\n /* margin-bottom: 0.75rem; */\r\n display: inline-block;\r\n margin: 0;\r\n}\r\n\r\n.step h2 {\r\n font-size: 2rem;\r\n margin-bottom: 0.25rem;\r\n font-weight: 500;\r\n}\r\n\r\n.step p {\r\n font-size: 1rem;\r\n line-height: 1.5;\r\n}\r\n";
|
|
3
3
|
module.exports = styles;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const styles = ".steps-container {\r\n display: grid;\r\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\r\n padding: 2rem;\r\n color: white;\r\n justify-items: center;\r\n max-width: 1000px;\r\n font-family: 'Roboto Condensed', sans-serif;\r\n}\r\n\r\n.step {\r\n text-align: center;\r\n max-width:
|
|
1
|
+
const styles = ".steps-container {\r\n display: grid;\r\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\r\n padding: 2rem;\r\n color: white;\r\n justify-items: center;\r\n max-width: 1000px;\r\n font-family: 'Roboto Condensed', sans-serif;\r\n}\r\n\r\n.step {\r\n text-align: center;\r\n max-width: 300px;\r\n margin: 20px;\r\n padding: 20px;\r\n border-radius: 8px;\r\n background: #333;\r\n background: linear-gradient(159deg, rgba(51, 51, 51, 1) 22%, rgba(0, 149, 174, 1) 100%, rgba(51, 51, 51, 1) 100%);\r\n box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);\r\n transition:\r\n transform 0.2s ease,\r\n box-shadow 0.2s ease;\r\n}\r\n\r\n.step:hover {\r\n transform: translateY(-5px);\r\n box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);\r\n}\r\n\r\n.step :global(svg) {\r\n width: 150px;\r\n height: 150px;\r\n /* margin-bottom: 0.75rem; */\r\n display: inline-block;\r\n margin: 0;\r\n}\r\n\r\n.step h2 {\r\n font-size: 2rem;\r\n margin-bottom: 0.25rem;\r\n font-weight: 500;\r\n}\r\n\r\n.step p {\r\n font-size: 1rem;\r\n line-height: 1.5;\r\n}\r\n";
|
|
2
2
|
export {
|
|
3
3
|
styles as default
|
|
4
4
|
};
|