Skip to content

Commit

Permalink
Merge pull request #159 from nlxai/form-fixes
Browse files Browse the repository at this point in the history
Form fixes
  • Loading branch information
peterszerzo authored Sep 4, 2024
2 parents 1be9e32 + ccd532c commit d9c8d05
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
8 changes: 8 additions & 0 deletions packages/website/src/components/Header.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
.DocSearch-Search-Icon {
color: #444 !important;
}

.DocSearch-Button {
font-weight: 100;
height: 32px; /* same as nlx logo */
}

.DocSearch-Button-Placeholder {
font-size: 14px;
}
12 changes: 7 additions & 5 deletions packages/website/src/custom-components/SecureInput.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.form-container,
.success-container {
font-size: 32px;
height: 168px;
padding: 20px;
background: #efefef;
}
Expand All @@ -15,6 +14,7 @@

.form-container form {
margin: 0;
width: 100%;
}

.form-container form > input {
Expand All @@ -36,11 +36,13 @@
fill: green;
}

input {
.form-container input {
width: 100%;
padding: 5px 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 0.75rem;
padding: 6px;
background: #fff;
border: 1px solid #dedede;
border-radius: 6px;
}

.form-container [type="submit"] {
Expand Down

0 comments on commit d9c8d05

Please sign in to comment.