Skip to content

Frontend fix issues and improvments #154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 13, 2025
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
2 changes: 1 addition & 1 deletion app/components/Output/Output.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const SchemaError = ({ schemaPath }: { schemaPath: string }) => {
<b>Details:</b> {errorDetails}
</div>
<div style={{ marginTop: "10px" }}>
<div>Possible Fixes:</div>
<b>Possible Fixes:</b>
<UnorderedList>
{possibleFixes.map((fix, index) => (
<ListItem key={index}>{fix}</ListItem>
Expand Down
2 changes: 1 addition & 1 deletion app/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ html {

main {
height: 100%;
}
}
4 changes: 3 additions & 1 deletion app/styles/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const Button = {
},
success: {
color: "hsl(var(--success))",

borderColor: "hsl(var(--success))",
borderWidth: "1px",
_disabled: {
Expand All @@ -26,6 +25,9 @@ const Button = {
_hover: {
bg: "hsl(var(--success))",
color: "black",
"& svg path": {
fill: "black",
},
_disabled: {
color: "hsl(var(--success) / 0.4)",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Let's add a new property `hasAgreedToTerms` to the JSON object. This property sh

### Boolean

A `boolean` type can have two values: `true` or `false`. you can define a boolean type as follows:
A `boolean` type can have two values: `true` or `false`. You can define a boolean type as follows:

```json
{
Expand Down