Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xkeshav committed May 19, 2024
1 parent 28ab893 commit 65c379f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/html/canvas.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<header>
<nav>
<a href="/">Back</a>
<h1>generate image with text</h1>
<h1>Generate image with text</h1>
<modal>?</modal>
</nav>
</header>
Expand Down
5 changes: 3 additions & 2 deletions src/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

<head>
<meta charset="utf-8">
<meta property="og:locale" content="en_GB" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="abcdkbd.com" />
<meta property="og:title" content="A kid lab" />
<meta property="og:description" content="A learning pad for kids with interactive games." />
<meta property="og:url" content="https://www.abcdkbd.com/" />
<meta property="og:site_name" content="ABCD KBD DOt COM" />
Expand All @@ -16,6 +16,7 @@
<meta property="og:image:height" content="1080" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:alt" content="alphabet image" />
<meta property="og:image" itemprop="image" content="/public/images/alphabet.jpg">
<!-- Twitter -->
<meta name="twitter:image" content="/public/images/alphabet.jpg" />
<meta name="twitter:image:type" content="image/jpg" />
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/capital.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ut_list = [
{ "name": "Chandigarh", "capital": "Chandigarh" , isState: false},
{ "name": "Dadra and Nagar Haveli and Daman and Diu", "capital": "Daman" , isState: false},
{ "name": "Jammu & Kashmir", "capital": "Srinagar" , isState: false},
{ "name": "Ladakhr", "capital": "Leh" , isState: false},
{ "name": "Ladakh", "capital": "Leh" , isState: false},
{ "name": "Lakshadweep", "capital": "Kavaratti" , isState: false},
{ "name": "Delhi", "capital": "New Delhi" , isState: false},
{ "name": "Puducherry", "capital": "Puducherry" , isState: false}
Expand Down
12 changes: 7 additions & 5 deletions src/styles/canvas.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
:root {
--large: 600px;
--small: 200px;
}

nav {
border: 1px solid grey;
Expand All @@ -28,11 +24,17 @@ nav {

.canvas__div {
display: grid;
container-name: canvas;
grid-template-columns: repeat(4, minmax(200px, 1fr));
grid-auto-columns: fit-content(700px) fit-content(700px) 1fr;
grid-gap: 1rem;
}

@container canvas (width < 700px) {
.canvas__div {
grid-template-columns: repeat(2, 1rem);
}
}

.canvas__container {
padding: 0.5rem;
}
Expand Down

0 comments on commit 65c379f

Please sign in to comment.