Initial Commit (#4358)

This commit is contained in:
Strek
2022-02-18 23:35:22 +05:30
committed by GitHub
parent 7d55f613a6
commit 5b8a720ece
2 changed files with 2 additions and 2 deletions

View File

@@ -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}

View File

@@ -52,7 +52,7 @@ Declares a ref.
```js
function MyComponent() {
const inputRef = useState(null);
const inputRef = useRef(null);
// ...
```