Skip to content

Commit

Permalink
Fix border and units
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgio-tran committed Nov 13, 2023
1 parent 7d664f6 commit 9084377
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const EditRemovalModal = ({ id, event }) => {
<form onSubmit={handleSubmit(onSubmit)}>
<div className="form-control w-full">
<label className="label">
<span className="label-text">Debris Size</span>
<span className="label-text">Debris Size <var>(kg/cm<sup>2</sup>)</var></span>
</label>
<input
{...register("debrisSize")}
Expand All @@ -87,7 +87,7 @@ const EditRemovalModal = ({ id, event }) => {
</div>
<div className="form-control w-full">
<label className="label">
<span className="label-text">Debris Mass</span>
<span className="label-text">Debris Mass <var>kg</var></span>
</label>
<input
{...register("debrisMass")}
Expand Down
4 changes: 4 additions & 0 deletions my-app/src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
@apply bg-primary;
@apply text-white;
}

.textarea-bordered {
@apply border border-gray-200;
}
/* .divider {
@apply text-slate-200
} */
Expand Down

0 comments on commit 9084377

Please sign in to comment.