Skip to content

Commit 1a76a0f

Browse files
committed
Merge branch 'dev' of github.com:rubydevi/jetlogix-frontend into f/unit-test
2 parents fb7ae8b + d7551d2 commit 1a76a0f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/Navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const Navigation = () => {
5353

5454
<div className="d-none d-md-block">
5555
<div
56-
className={`position-absolute top-0 start-0 vh-100 bg-light border-end d-flex flex-column ${
56+
className={`position-fixed top-0 start-0 vh-100 bg-light border-end d-flex flex-column ${
5757
isOpen && isMobile ? 'w-50' : 'w-0'
5858
}`}
5959
id="sidebar-wrapper"

src/components/Register.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const Register = () => {
139139
>
140140
{errMsg}
141141
</p>
142-
<h1>Register</h1>
142+
<h3>Register</h3>
143143
<form onSubmit={handleSubmit}>
144144
<label htmlFor="username">
145145
Username:

src/components/styledcomponents/CenterContainer.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const CenteredDiv = styled.div`
66
align-items: center;
77
margin-top: 20px;
88
margin-left: 20%;
9+
padding-top: 12px;
910
@media (max-width: 768px) {
1011
margin-left: 0;
1112
margin-top: 0;

src/components/styledcomponents/LoginStyle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import plane from '../../assets/golfstreamnew.png';
44
const LoginStyle = styled.div`
55
display: flex;
66
justify-content: center;
7-
align-items: center;
7+
align-items: start;
88
background-image: url(${plane});
99
background-size: cover;
1010
background-repeat: no-repeat;

src/index.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,13 @@ html {
4242
}
4343

4444
section {
45-
margin-top: 40px;
4645
width: 100%;
4746
max-width: 420px;
4847
min-height: 400px;
4948
display: flex;
5049
flex-direction: column;
5150
justify-content: flex-start;
52-
padding: 1rem;
51+
padding: 0 1rem;
5352
}
5453

5554
.login-register-style {

0 commit comments

Comments
 (0)