Skip to content

Commit 60a96c0

Browse files
authored
fix: Merge pull request #429 from CedricProfessionnel/ChangeNameColorLanguageTextBox
Correct Text color
2 parents f9dfbdb + 80d6ac8 commit 60a96c0

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

public/legal.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
<body>
1111
<div
1212
id="header"
13-
style="display: inline-flex; justify-content: space-between; width: 100%"
13+
style="display: inline-flex; justify-content: space-between; width: 100%;"
1414
>
15-
<img src="./favicon.ico" style="height: 100%" />
16-
<div style="display: flex; width: 100%">
17-
<a style="margin: auto" href="https://universaldatatool.com">
15+
<img src="./favicon.ico" style="height: 100%;" />
16+
<div style="display: flex; width: 100%;">
17+
<a style="margin: auto;" href="https://universaldatatool.com">
1818
<h1>Universal Data Tool</h1>
1919
</a>
2020
</div>
21-
<img src="./favicon.ico" style="height: 100%" />
21+
<img src="./favicon.ico" style="height: 100%;" />
2222
</div>
2323
<div
2424
id="terms-and-conditions-wrapper"
25-
style="padding-right: 5vw; padding-left: 5vw; padding-top: 2vh"
25+
style="padding-right: 5vw; padding-left: 5vw; padding-top: 2vh;"
2626
>
2727
<h1>Terms and Conditions of Use</h1>
2828
<h3>1. Terms</h3>

src/components/StartingPage/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ const Title = styled("div")({
8282
})
8383

8484
const languageSelectionFormStyle = {
85+
input: (base) => ({
86+
...base,
87+
color: "#e0e0e0",
88+
}),
8589
control: (base, state) => ({
8690
...base,
8791
border: "1px solid #9e9e9e",

0 commit comments

Comments
 (0)