Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit f8ef5ca

Browse files
committed
Fixed bug in centering
1 parent bd0adb2 commit f8ef5ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/basicElements/Login.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ export function LoginInteractionArea(props: LoginInputInterface) {
9595
export function LoginHeader() {
9696
return (
9797
<div className="login-intro">
98-
<Row className="justify-content-md-center">
98+
<Row className="justify-content-center">
9999
<Image rounded src={logo} height="200px" width="auto"/>
100100
</Row>
101-
<Row className="justify-content-md-center">
101+
<Row className="justify-content-center">
102102
<h1>Greetings Traveller!</h1>
103103
</Row>
104-
<Row className="justify-content-md-center">
104+
<Row className="justify-content-center">
105105
<h2>Be welcome at FileFighter</h2>
106106
</Row>
107107
</div>
@@ -123,7 +123,7 @@ export function LoginInput(props: LoginInputInterface) {
123123

124124
return (
125125
<div>
126-
<Row className="mt-4 justify-content-md-center">
126+
<Row className="mt-4 justify-content-center">
127127
<Col className="login-input">
128128
<Form onSubmit={handleSubmit} >
129129
<Form.Group controlId="formBasicUsername">

0 commit comments

Comments
 (0)