Skip to content

Commit

Permalink
Chore: Add basic layout styling
Browse files Browse the repository at this point in the history
  • Loading branch information
sandypockets committed Dec 14, 2023
1 parent 95fb76a commit 37da1d1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions example/form.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,33 @@ form > div {
justify-content: center;
width: 300px;
}

form > div > div {
display: flex;
flex-direction: column;
gap: 0.5rem;
width: 100%;
}

label {
font-size: small;
}

input,
textarea,
button {
border-radius: 5px;
border: solid #00000030 1px;
padding: 5px 10px;
}

button {
cursor: pointer;
width: 100%;
}

.datepicker-input {
margin: 0.5rem 0;
border-radius: 5px;
border: solid #00000030 1px;
}

0 comments on commit 37da1d1

Please sign in to comment.