Skip to content

Commit

Permalink
Merge pull request #118 from supertokens/fix/signin-form
Browse files Browse the repository at this point in the history
fix: dashboard signin login btn margin
  • Loading branch information
rishabhpoddar authored Sep 29, 2023
2 parents c30b919 + b03fcfe commit 763756d
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [0.8.3] - 2023-09-29

- Fixes dashboard signin form styles issue.

## [0.8.2] - 2023-09-20

- Fixes an issue where user details would not load if user meta data was not enabled in the backend
Expand Down
2 changes: 1 addition & 1 deletion build/static/css/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/css/main.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/static/js/bundle.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dashboard",
"version": "0.8.2",
"version": "0.8.3",
"private": true,
"dependencies": {
"@babel/core": "^7.16.0",
Expand Down
4 changes: 4 additions & 0 deletions src/ui/components/auth/Auth.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ form .input-field-inset:not(.input-field-inset-focused) input {
}
}

.margin-top-16 {
margin-top: 16px;
}

.command-container {
margin-block: 24px 18px;
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/ui/components/auth/SignInContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const SignInContent: React.FC<SignInContentProps> = ({
placeholder=""
/>

<div className="cta-container">
<div className="cta-container margin-top-16">
<button
className="button"
type="submit"
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
* under the License.
*/

export const package_version = "0.8.2";
export const package_version = "0.8.3";

0 comments on commit 763756d

Please sign in to comment.