Skip to content

Commit

Permalink
Initial Commit (#4358)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strek authored Feb 18, 2022
1 parent 7d55f61 commit 5b8a720
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion beta/src/components/MDX/YouWillLearnCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface YouWillLearnCardProps {

function YouWillLearnCard({title, path, children}: YouWillLearnCardProps) {
return (
<div className="flex flex-col h-full bg-card dark:bg-card-dark shadow-inner justify-between rounded-lg pb-8 p-6 xl:p-8">
<div className="flex flex-col h-full bg-card dark:bg-card-dark shadow-inner justify-between rounded-lg pb-8 p-6 xl:p-8 mt-3">
<div>
<h4 className="text-primary dark:text-primary-dark font-bold text-2xl leading-tight">
{title}
Expand Down
2 changes: 1 addition & 1 deletion beta/src/pages/apis/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Declares a ref.
```js
function MyComponent() {
const inputRef = useState(null);
const inputRef = useRef(null);
// ...
```
Expand Down

0 comments on commit 5b8a720

Please sign in to comment.