Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
3 changes: 3 additions & 0 deletions app/components/MyBtn/MyBtn.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.myBtn:hover svg path{
fill: black !important;
}
2 changes: 2 additions & 0 deletions app/components/MyBtn/MyBtn.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Button, Tooltip } from "@chakra-ui/react";
import { sendGAEvent } from "@next/third-parties/google";
import styles from "./MyBtn.module.css";

export default function MyBtn({
children,
Expand Down Expand Up @@ -31,6 +32,7 @@ export default function MyBtn({
textTransform={"uppercase"}
isDisabled={isDisabled}
fontWeight={"bold"}
className={styles.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
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%;
}
}
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