diff --git a/package.json b/package.json index 04f8851c..3a9ab3bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "harperdb-studio", - "version": "4.7.0", + "version": "4.7.1", "description": "A UI for HarperDB", "deploymentUrl": "studio.harperdb.io", "private": true, diff --git a/src/assets/styles/components/_error-boundary.scss b/src/assets/styles/components/_error-boundary.scss index 61616299..873f509e 100644 --- a/src/assets/styles/components/_error-boundary.scss +++ b/src/assets/styles/components/_error-boundary.scss @@ -1,3 +1,6 @@ +.w-400 { + width: 400px; +} .error-boundary { font-size: $font-size-small; overflow: hidden; diff --git a/src/assets/styles/pages/_auth.scss b/src/assets/styles/pages/_auth.scss index 60509b04..bcc20ff6 100644 --- a/src/assets/styles/pages/_auth.scss +++ b/src/assets/styles/pages/_auth.scss @@ -54,6 +54,10 @@ } } +.auth-centered-container { + height: calc(100% - 135px); +} + .auth-form-container { background-color: $color-darkpurple; } diff --git a/src/components/auth/ResetPassword.js b/src/components/auth/ResetPassword.js index 00cc8ca1..32003f0a 100644 --- a/src/components/auth/ResetPassword.js +++ b/src/components/auth/ResetPassword.js @@ -78,6 +78,7 @@ function ResetPassword() { className="border-0 rounded-pill btn-gradient-blue" title="Send Password Reset Email" block + type="submit" color="purple" > Send Password Reset Email diff --git a/src/components/auth/SignIn.js b/src/components/auth/SignIn.js index da6e2365..3207183a 100644 --- a/src/components/auth/SignIn.js +++ b/src/components/auth/SignIn.js @@ -93,7 +93,7 @@ function SignIn() { placeholder="password" /> - diff --git a/src/components/auth/SignUp.js b/src/components/auth/SignUp.js index 0f900b60..1776acf7 100644 --- a/src/components/auth/SignUp.js +++ b/src/components/auth/SignUp.js @@ -142,6 +142,7 @@ function SignUp() { - - -
 
- - )} + + + + )} + ); } diff --git a/src/components/layouts/App.js b/src/components/layouts/App.js index 1c07f6e2..4f0c9779 100644 --- a/src/components/layouts/App.js +++ b/src/components/layouts/App.js @@ -140,7 +140,11 @@ function App() { ) : loggedIn ? (
- }> + + + + }> {/* can we put instance routes in here, each in a suspense tag (since they're lazily loaded) */} : } path="/update-password" /> diff --git a/src/components/shared/ErrorFallback.js b/src/components/shared/ErrorFallback.js index 2725edd7..08190fb9 100644 --- a/src/components/shared/ErrorFallback.js +++ b/src/components/shared/ErrorFallback.js @@ -3,29 +3,31 @@ import { Button, Card, CardBody, Col, Row } from 'reactstrap'; function ErrorFallback({ error, componentStack, resetErrorBoundary, extraClass = undefined }) { return ( - - - Component Error {new Date().toLocaleTimeString()} -
-
{error.message}
-
-
-
{componentStack}
-
- - - - - - - - -
-
+
+ + + Component Error {new Date().toLocaleTimeString()} +
+
{error.message}
+
+
+
{componentStack}
+
+ + + + + + + + +
+
+
); }