Skip to content

Commit

Permalink
fixed-form-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
MonalikaPatnaik committed Jan 5, 2024
1 parent 4499443 commit 64df10d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 56 deletions.
35 changes: 14 additions & 21 deletions client/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -536,11 +536,14 @@ footer .input-group-text {

/* Contact Page */
.contact-inner-wrapper {
background-color: #decaec;
padding: 30px 20px;
border-radius: 15px;
gap: 15px;
}

.contact-form input:focus, .contact-form textarea:focus{
border: 1px solid #e645bb;
}
.contact-inner-wrapper>div {
width: 48%;
}
Expand Down Expand Up @@ -624,28 +627,17 @@ footer .input-group-text {
margin-top: 200px;
}

.store-card {
background-color: #decaec;
border-radius: 10px;
width: 600px;
margin: 0 auto;
box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
margin-bottom: 10px;
}
.store-header{
margin-top: 10px;
/* text-decoration: underline; */
}
.auth-card {
padding: 10px;
}
.auth-card form{
background-color: #decaec;
margin: auto;
margin-bottom: 15px;
}
.auth-card form input{
border: 1px solid black;
background-color:#decaec;
width: 600px;
padding-left: 100px;
padding-right:100px;
padding-top:50px;
padding-bottom:20px;
margin: 30px auto;
/* margin-top: 5px; */
border-radius: 10px;
}

.auth-card h3 {
Expand All @@ -665,6 +657,7 @@ footer .input-group-text {
color: var(--color-777777);
font-size: 14px;
border-radius: 10px;
border-color: transparent;
}

.auth-card a {
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/SubmitEmail.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
form{
.hero form{
display: flex;
background-color: white;
width: fit-content;
Expand Down
30 changes: 0 additions & 30 deletions client/src/pages/Contact.css

This file was deleted.

1 change: 0 additions & 1 deletion client/src/pages/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import BreadCrumb from "../components/BreadCrumb";
import Meta from "../components/Meta";

import Container from "../components/Container";
import './Contact.css';

const Contact = () => {
return (
Expand Down
7 changes: 4 additions & 3 deletions client/src/pages/CreateStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ const CreateStore = () => {

<Container class1="login-wrapper py-3 home-wrapper-2">
<div className="row">
<div className="store-card">
<div className="store-header"><h3 className=" d-flex text-align-center justify-content-center">Create store!</h3></div>
<div className="col-12">
<h3 className=" d-flex text-align-center justify-content-center">Create store!</h3>
<div className="auth-card">

<form onSubmit={handleSubmit} className="d-flex flex-column gap-15">
<CustomInput
type="text"
Expand Down Expand Up @@ -122,4 +123,4 @@ const CreateStore = () => {
);
};

export default CreateStore;
export default CreateStore;

0 comments on commit 64df10d

Please sign in to comment.