-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2429fce
commit 96cfb30
Showing
21 changed files
with
454 additions
and
120 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Bleed } from "nextra-theme-docs"; | ||
|
||
export default function Iframe(props) { | ||
return <> | ||
<iframe src={props.src} style={{width: `100%`, height: `1080px`, margin: `20px auto`}} /> | ||
{/* <Bleed full><iframe src={props.src} style={{width: `100%`, height: `100%`}} /></Bleed> */} | ||
</> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# About | ||
|
||
This is the about page! This page is shown on the navbar. | ||
This is the About Page |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Code | ||
|
||
These are some Code Snippets that I always find helpful, maybe you will too! | ||
|
||
<div style={{marginTop: -20}}></div> | ||
|
||
## Tips | ||
|
||
If you are using JavaScript instead of TypeScript, you may need to ***Remove Type Definitions.*** | ||
|
||
Turn `(objectWithTypeDefinition?: typeDefinition)` into `(objectWithoutTypeDefinition)`. | ||
|
||
If you are using CSS instead of SCSS, you may need to take the children out of the parent! | ||
|
||
Turn `Parent { Child { style } }` into `Parent Child { style }`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"typescript": "TypeScript", | ||
"javascript": "JavaScript", | ||
"scss": "SCSS", | ||
"css": "CSS" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# CSS | ||
|
||
If you are using CSS instead of SCSS, you may need to take the children out of the parent! | ||
|
||
Turn `Parent { Child { style } }` into `Parent Child { style }`. | ||
|
||
## textOverflow | ||
|
||
```scss showLineNumbers filename="textOverflow.scss" {1,3} copy | ||
.textOverflowParent { | ||
position: relative; | ||
.textOverflow { | ||
margin: 0; | ||
max-width: 60%; | ||
overflow: hidden; | ||
white-space: nowrap; | ||
text-overflow: ellipsis; | ||
} | ||
} | ||
``` |
Oops, something went wrong.
96cfb30
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
product-ivf – ./
productivf.vercel.app
product-ivf-git-main-strawhat19.vercel.app
product-ivf.vercel.app
product-ivf-strawhat19.vercel.app