@greghowe79/the-lib 0.6.7 → 0.6.8

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.
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
- const styles = ".steps-container {\r\n display: grid;\r\n grid-template-columns: 1fr 1fr 1fr;\r\n padding: 2rem;\r\n color: white;\r\n justify-items: center;\r\n 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: 230px;\r\n margin: 20px;\r\n padding: 20px;\r\n border-radius: 8px;\r\n background-color: #00c9b7;\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: 200px;\r\n height: 200px;\r\n margin-bottom: 0.75rem;\r\n display: inline-block;\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}\r\n";
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: 230px;\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: 200px;\r\n height: 200px;\r\n margin-bottom: 0.75rem;\r\n display: inline-block;\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}\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: 1fr 1fr 1fr;\r\n padding: 2rem;\r\n color: white;\r\n justify-items: center;\r\n 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: 230px;\r\n margin: 20px;\r\n padding: 20px;\r\n border-radius: 8px;\r\n background-color: #00c9b7;\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: 200px;\r\n height: 200px;\r\n margin-bottom: 0.75rem;\r\n display: inline-block;\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}\r\n";
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: 230px;\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: 200px;\r\n height: 200px;\r\n margin-bottom: 0.75rem;\r\n display: inline-block;\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}\r\n";
2
2
  export {
3
3
  styles as default
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greghowe79/the-lib",
3
- "version": "0.6.7",
3
+ "version": "0.6.8",
4
4
  "description": "Collection of fast components for Qwik",
5
5
  "main": "./lib/index.qwik.mjs",
6
6
  "qwik": "./lib/index.qwik.mjs",