diff --git a/src/plays/password-generator/PasswordGenerator.jsx b/src/plays/password-generator/PasswordGenerator.jsx index d378ebd0de..3cf6d9ced4 100644 --- a/src/plays/password-generator/PasswordGenerator.jsx +++ b/src/plays/password-generator/PasswordGenerator.jsx @@ -105,7 +105,7 @@ function PasswordGenerator(props) { return (
-
+
{/* Your Code Starts Here */}

Password Generator

@@ -171,7 +171,7 @@ function PasswordGenerator(props) {
-
diff --git a/src/plays/password-generator/password-generator-style.css b/src/plays/password-generator/password-generator-style.css index 308b676d37..1688b62849 100644 --- a/src/plays/password-generator/password-generator-style.css +++ b/src/plays/password-generator/password-generator-style.css @@ -1,28 +1,28 @@ -.main { +.password-generator .main { padding: 0; margin: 0; box-sizing: border-box; } -.title { +.password-generator .title { text-align: center; } -.section { +.password-generator .section { display: flex; justify-content: center; align-items: center; flex-direction: column; } -.section > div:nth-of-type(2) { +.password-generator .section > div:nth-of-type(2) { position: relative; /* background-color: black; */ } -.copy-button { +.password-generator .copy-button { position: absolute; right: 0; top: 0; @@ -39,19 +39,19 @@ transition: 100ms; } -.copy-button:hover { +.password-generator .copy-button:hover { background-color: #135088; border: 2px solid #135088; border-left: none; } -.copid { +.password-generator .copid { background-color: #135088; border: 2px solid #135088; border-left: none; } -.section > div:nth-of-type(1) { +.password-generator .section > div:nth-of-type(1) { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; @@ -61,7 +61,7 @@ margin: 25px 0; } -.password-input { +.password-generator .password-input { padding: 10px; outline: none; border: 2px solid #ccc; @@ -74,7 +74,7 @@ } -.generate { +.password-generator .generate-pwd { padding: 10px 1rem; outline: none; font-size: 1.5rem; @@ -85,13 +85,14 @@ cursor: pointer; border-radius: 5px; transition: 100ms; + margin: 1rem 0 0 0; } -.generate:hover { +.password-generator .generate-pwd:hover { background: rgb(0,128,0, 1); } -.checkbox-comp { +.password-generator .checkbox-comp { padding: 0; margin: 0; width: 100%; @@ -100,13 +101,13 @@ justify-content: space-between; } -.checkbox { +.password-generator .checkbox { width: 20px; height: 20px; float: right; } -.select { +.password-generator .select { width: 45px; height: 25px; font-size: 1rem; @@ -114,24 +115,24 @@ margin: 0; } -.error { +.password-generator .error { color: red; font-size: 1rem; text-align: center; } @media screen and (max-width: 600px) { - .section > div:nth-of-type(1) { + .password-generator .section > div:nth-of-type(1) { grid-template-columns: 1fr; grid-template-rows: 1fr; width: 100%; } - .password-input { + .password-generator .password-input { font-size: 1rem; width: 100%; } - .copy-button { + .password-generator .copy-button { padding: 0 5px; font-size: 16px; } diff --git a/src/plays/random-meme-generator/RandomMemeGenerator.jsx b/src/plays/random-meme-generator/RandomMemeGenerator.jsx index 0910a2dc76..e495c01dd5 100644 --- a/src/plays/random-meme-generator/RandomMemeGenerator.jsx +++ b/src/plays/random-meme-generator/RandomMemeGenerator.jsx @@ -54,7 +54,7 @@ function RandomMemeGenerator(props) { {meme.url === null || meme.url === undefined ? : meme}
-
+
{/* Your Code Ends Here */} diff --git a/src/plays/random-meme-generator/random-meme-generator.css b/src/plays/random-meme-generator/random-meme-generator.css index 9821fc48e8..57e6936350 100644 --- a/src/plays/random-meme-generator/random-meme-generator.css +++ b/src/plays/random-meme-generator/random-meme-generator.css @@ -18,7 +18,7 @@ margin: 2rem 0; } -.generate { +.generate-meme { width: 100%; display: flex; justify-content: center; diff --git a/src/plays/react-todo-app/ReactTodoApp.jsx b/src/plays/react-todo-app/ReactTodoApp.jsx index de5cc23bd4..56dcba4ad4 100644 --- a/src/plays/react-todo-app/ReactTodoApp.jsx +++ b/src/plays/react-todo-app/ReactTodoApp.jsx @@ -50,7 +50,7 @@ function ReactTodoApp(props) {
{/* Your Code Starts Here */}
-
+

Todo List

diff --git a/src/plays/react-todo-app/components/Input.jsx b/src/plays/react-todo-app/components/Input.jsx index 494e41ec61..e338a30396 100644 --- a/src/plays/react-todo-app/components/Input.jsx +++ b/src/plays/react-todo-app/components/Input.jsx @@ -22,12 +22,12 @@ const Input = ({ input, setInput, todos, setTodos, setStatus }) => { } return ( -
+ -
+