@openeventkit/event-site 1.0.12 → 1.0.13

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openeventkit/event-site",
3
3
  "description": "Event Site",
4
- "version": "1.0.12",
4
+ "version": "1.0.13",
5
5
  "author": "Tipit LLC",
6
6
  "dependencies": {
7
7
  "@mui/base": "^5.0.0-alpha.114",
@@ -23,6 +23,7 @@ const LoginButton = ({
23
23
  allowsNativeAuth,
24
24
  allowsOtpAuth,
25
25
  location,
26
+ style = {},
26
27
  children,
27
28
  }) => {
28
29
  const [isActive, setIsActive] = useState(false);
@@ -130,7 +131,7 @@ const LoginButton = ({
130
131
  const { loginButton } = marketingPageSettings.hero.buttons;
131
132
 
132
133
  return (
133
- <div className={styles.loginButtonWrapper}>
134
+ <div style={style} className={styles.loginButtonWrapper}>
134
135
  {children ?
135
136
  React.cloneElement(children, { onClick: handleOpenPopup })
136
137
  :