Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions app/components/MyBtn/MyBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export default function MyBtn({
textTransform={"uppercase"}
isDisabled={isDisabled}
fontWeight={"bold"}
className="myBtn"
>
{children}
</Button>
Expand Down
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
5 changes: 5 additions & 0 deletions app/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,8 @@ html {
main {
height: 100%;
}


.myBtn:hover .nextIcon{
fill: black !important;
}
1 change: 1 addition & 0 deletions app/styles/icons/HiChevronRightGreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ function Icon({
fillRule="evenodd"
clipRule="evenodd"
d="M3.83439 9.7656C3.68441 9.61557 3.60016 9.41213 3.60016 9.2C3.60016 8.98786 3.68441 8.78442 3.83439 8.6344L6.46879 6L3.83439 3.3656C3.68866 3.21471 3.60803 3.01263 3.60985 2.80288C3.61167 2.59312 3.69581 2.39247 3.84413 2.24414C3.99246 2.09581 4.19311 2.01168 4.40287 2.00986C4.61262 2.00803 4.81471 2.08867 4.96559 2.2344L8.16559 5.4344C8.31556 5.58442 8.39982 5.78786 8.39982 6C8.39982 6.21213 8.31556 6.41557 8.16559 6.5656L4.96559 9.7656C4.81557 9.91557 4.61212 9.99983 4.39999 9.99983C4.18786 9.99983 3.98441 9.91557 3.83439 9.7656Z"
className="nextIcon"
fill={color}
/>
</svg>
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