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

Commit d407ba1

Browse files
committed
css fix
1 parent 05e1297 commit d407ba1

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

webtool-ui/src/main.css

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@ body{
22
height: 100vh;
33
width: 100vw;
44
margin: 0;
5-
}
5+
}
6+
7+
#root div{
8+
padding: 10px;
9+
}

webtool-ui/src/sites/Login.css

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
p a{
2+
color: #0923b4;
3+
font-size: 14px;
4+
font-weight: 600;
5+
margin: 0 10px;
6+
padding: 10px 0;
7+
border-bottom: 2px solid transparent;
8+
}

webtool-ui/src/sites/Login.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {useState} from "react";
44
import {useCookies} from "react-cookie";
55
import {Link, NavigateFunction, useNavigate} from "react-router-dom";
66
import {server} from "../variables.ts";
7-
7+
import './Login.css'
88

99
function Login () :JSX.Element {
1010
const [email, setEmail] = useState<string>("")
@@ -46,7 +46,7 @@ function Login () :JSX.Element {
4646
<Input type={"email"} name={"email"} label={"E-Mail"} value={setEmail}/>
4747
<Input type={"password"} name={"password"} label={"Passwort"} value={setPassword}/>
4848
<p>{loginError}</p>
49-
<p>Noch kein Konto? <Link to={"/registrieren"}>Jetzt Registrieren</Link></p>
49+
<p>Noch kein Konto? <Link to={"/registrieren"}><span>Jetzt Registrieren</span></Link></p>
5050
</Form>
5151
</div>
5252
);

webtool-ui/src/subsites/Password.css

-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ h1 {
1414
margin-bottom: 20px;
1515
}
1616

17-
input[type="text"] {
18-
padding: 8px;
19-
width: 200px;
20-
}
21-
2217
button {
2318
padding: 8px;
2419
margin-left: 10px;

0 commit comments

Comments
 (0)