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

now can't scroll on settings page for medium screens #250

Merged
Merged
Changes from all 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
21 changes: 9 additions & 12 deletions nginx/src/css/settings.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
padding: 0rem 3rem;
max-width: 400px;
min-width: 200px;
max-height: 650px;
min-height: 650px;
margin: 5rem auto 0 auto;
max-height: 620px;
min-height: 620px;
margin: 1rem auto 0 auto;
}

.profile-header {
Expand Down Expand Up @@ -62,23 +62,23 @@
.profile-divider {
border: 1px solid var(--line-clr);
width: 75%;
margin: 0.5rem auto;
margin: 0rem auto 0.5rem auto;
}

.profile-content {
display: flex;
flex-direction: column;
align-items: space-between;
gap: 1rem;
padding: 1rem 0.5rem;
padding: 0rem 0.5rem;
}

.form-container {
display: flex;
flex-direction: column;
justify-content: center;
gap: 1rem;
padding: 0.5rem;
padding: 0rem 0.5rem;
}

.password-container {
Expand All @@ -94,6 +94,7 @@


.username {
padding: 0.5rem 0.5rem 0rem 0.5rem;
font-size: 3rem;
}

Expand Down Expand Up @@ -140,6 +141,7 @@
height: 3.5rem;
width: 80%;
cursor: pointer;
margin-top: 0.4rem;
margin-left: 2.3rem;
font-weight: 500;
}
Expand All @@ -148,11 +150,6 @@
background-color: var(--dark-hover-clr);
}

.username,
.password {
padding: 0.5rem;
}

.modal-overlay {
position: fixed;
top: 0;
Expand Down Expand Up @@ -248,4 +245,4 @@
margin-left: 10px;
font-size: 0.9em;
color: #555;
}
}
Loading