@local-civics/mgmt-ui 0.1.75 → 0.1.77
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/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2664,9 +2664,9 @@ var __spreadProps$1 = (a, b) => __defProps$1(a, __getOwnPropDescs$1(b));
|
|
|
2664
2664
|
const useStyles$1 = core.createStyles((theme) => ({
|
|
2665
2665
|
wrapper: {
|
|
2666
2666
|
minHeight: 400,
|
|
2667
|
+
height: "100%",
|
|
2667
2668
|
boxSizing: "border-box",
|
|
2668
2669
|
backgroundImage: `linear-gradient(-60deg, ${theme.colors[theme.primaryColor][4]} 0%, ${theme.colors[theme.primaryColor][7]} 100%)`,
|
|
2669
|
-
borderRadius: theme.radius.md,
|
|
2670
2670
|
padding: theme.spacing.xl * 2.5,
|
|
2671
2671
|
[`@media (max-width: ${theme.breakpoints.sm}px)`]: {
|
|
2672
2672
|
padding: theme.spacing.xl * 1.5
|
|
@@ -2725,7 +2725,15 @@ const TrialRegistration = (props) => {
|
|
|
2725
2725
|
const [firstName, setFirstName] = React__namespace.useState("");
|
|
2726
2726
|
const [lastName, setLastName] = React__namespace.useState("");
|
|
2727
2727
|
const [interests, setInterests] = React__namespace.useState({});
|
|
2728
|
-
return /* @__PURE__ */ React__namespace.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React__namespace.createElement(core.SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React__namespace.createElement(
|
|
2728
|
+
return /* @__PURE__ */ React__namespace.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React__namespace.createElement(core.SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React__namespace.createElement(core.Group, { spacing: "sm" }, /* @__PURE__ */ React__namespace.createElement(
|
|
2729
|
+
core.Image,
|
|
2730
|
+
{
|
|
2731
|
+
height: 100,
|
|
2732
|
+
width: "auto",
|
|
2733
|
+
fit: "contain",
|
|
2734
|
+
src: "https://cdn.localcivics.io/brand/l.png"
|
|
2735
|
+
}
|
|
2736
|
+
), /* @__PURE__ */ React__namespace.createElement("div", null, /* @__PURE__ */ React__namespace.createElement(core.Title, { className: classes.title }, "Trial Educator"), /* @__PURE__ */ React__namespace.createElement(core.Text, { className: classes.description, mt: "sm" }, "Try out a few of the features we can bring to your classroom. No commitment required."))), /* @__PURE__ */ React__namespace.createElement("div", { className: classes.form }, /* @__PURE__ */ React__namespace.createElement(core.Group, { mb: "md", spacing: "md", grow: true }, /* @__PURE__ */ React__namespace.createElement(
|
|
2729
2737
|
core.TextInput,
|
|
2730
2738
|
{
|
|
2731
2739
|
label: "First Name",
|