Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/mean-donkeys-double.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@asgardeo/react': patch
---

Fix alignment issues in the components
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ const useStyles = () => {
() => ({
card: {
gap: `calc(${theme.vars.spacing.unit} * 2)`,
minWidth: '420px',
} as CSSProperties,
header: {
gap: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ const useStyles = () => {
() => ({
card: {
gap: `calc(${theme.vars.spacing.unit} * 2)`,
minWidth: '420px',
} as CSSProperties,
header: {
gap: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const FormControl: FC<FormControlProps> = ({
const {theme} = useTheme();

const containerStyle: CSSProperties = {
textAlign: 'left',
marginBottom: `calc(${theme.vars.spacing.unit} * 2)`,
...style,
};
Expand Down
Loading