Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Resource Sharing Form] fixed alignment of the input fields in the form #940

Merged
merged 4 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions backend/.env
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
MONGO_DB_URL=<mongoDB_URL>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cane we please revert this file change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah sure

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please check and sorry for late

JWT_SECRET_KEY=<JWT_sceret>
MONGO_DB_URL=mongodb://127.0.0.1:27017/community-website
JWT_SECRET_KEY=secret
JWT_EXPIRES_IN=6h
BASE_URL=https://community-website-backend.herokuapp.com
EMAIL_USER=EMAIL_HERE
EMAIL_PASS=PASSWORD_HERE
EMAIL_USER=[email protected]
EMAIL_PASS=password
EMAIL_HOST=smtp.gmail.com
CLUSTER=no
JWT_RESET_PASSWORD_EXPIRES_IN=1h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@

.resource-input {
position: relative;
margin-bottom: 30px !important;
width: 35rem;
margin-bottom: 8px;
}

.resource-input input,
Expand Down Expand Up @@ -218,11 +217,8 @@
}

.inside-resource {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 85%;
margin: 0 auto;
}

[type="radio"] {
Expand Down Expand Up @@ -358,23 +354,6 @@ input[type="date"]:not(:valid):before {
align-items: center;
}

@media screen and (max-width: 1200px) {
.resource-input {
width: 23rem;
}

.toppings-list {
display: flex;
grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 750px) {
.resource-input {
width: auto;
}
}

@media screen and (max-width: 750px) {
.resource-section {
flex-direction: column;
Expand Down