@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.mjs
CHANGED
|
@@ -2644,9 +2644,9 @@ var __spreadProps$1 = (a, b) => __defProps$1(a, __getOwnPropDescs$1(b));
|
|
|
2644
2644
|
const useStyles$1 = createStyles((theme) => ({
|
|
2645
2645
|
wrapper: {
|
|
2646
2646
|
minHeight: 400,
|
|
2647
|
+
height: "100%",
|
|
2647
2648
|
boxSizing: "border-box",
|
|
2648
2649
|
backgroundImage: `linear-gradient(-60deg, ${theme.colors[theme.primaryColor][4]} 0%, ${theme.colors[theme.primaryColor][7]} 100%)`,
|
|
2649
|
-
borderRadius: theme.radius.md,
|
|
2650
2650
|
padding: theme.spacing.xl * 2.5,
|
|
2651
2651
|
[`@media (max-width: ${theme.breakpoints.sm}px)`]: {
|
|
2652
2652
|
padding: theme.spacing.xl * 1.5
|
|
@@ -2705,7 +2705,15 @@ const TrialRegistration = (props) => {
|
|
|
2705
2705
|
const [firstName, setFirstName] = React.useState("");
|
|
2706
2706
|
const [lastName, setLastName] = React.useState("");
|
|
2707
2707
|
const [interests, setInterests] = React.useState({});
|
|
2708
|
-
return /* @__PURE__ */ React.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React.createElement(SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React.createElement(
|
|
2708
|
+
return /* @__PURE__ */ React.createElement("div", { className: classes.wrapper }, /* @__PURE__ */ React.createElement(SimpleGrid, { maw: 960, ml: "auto", mr: "auto", cols: 1, spacing: 15, breakpoints: [{ maxWidth: "sm", cols: 1 }] }, /* @__PURE__ */ React.createElement(Group, { spacing: "sm" }, /* @__PURE__ */ React.createElement(
|
|
2709
|
+
Image,
|
|
2710
|
+
{
|
|
2711
|
+
height: 100,
|
|
2712
|
+
width: "auto",
|
|
2713
|
+
fit: "contain",
|
|
2714
|
+
src: "https://cdn.localcivics.io/brand/l.png"
|
|
2715
|
+
}
|
|
2716
|
+
), /* @__PURE__ */ React.createElement("div", null, /* @__PURE__ */ React.createElement(Title, { className: classes.title }, "Trial Educator"), /* @__PURE__ */ React.createElement(Text, { className: classes.description, mt: "sm" }, "Try out a few of the features we can bring to your classroom. No commitment required."))), /* @__PURE__ */ React.createElement("div", { className: classes.form }, /* @__PURE__ */ React.createElement(Group, { mb: "md", spacing: "md", grow: true }, /* @__PURE__ */ React.createElement(
|
|
2709
2717
|
TextInput,
|
|
2710
2718
|
{
|
|
2711
2719
|
label: "First Name",
|