Skip to content

Commit cce0b1d

Browse files
committed
adjust font-weight and colors
1 parent 785e8bf commit cce0b1d

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/views/ManageList.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export function ManageList({ list }) {
106106
<>
107107
<div className="manage-list-form flex flex-col h-[20vh] my-8 p-8 rounded-3xl shadow-xl overflow-hidden mx-auto bg-neutral ">
108108
<form onSubmit={handleSubmit}>
109-
<label htmlFor="name" className="text-white">
109+
<label htmlFor="name" className="text-white font-medium">
110110
Name of item:
111111
</label>
112112
<input
@@ -130,7 +130,7 @@ export function ManageList({ list }) {
130130

131131
<br></br>
132132

133-
<label htmlFor="frequency" className="text-white">
133+
<label htmlFor="frequency" className="text-white font-medium">
134134
When will you need this item again?:
135135
</label>
136136

@@ -139,7 +139,7 @@ export function ManageList({ list }) {
139139
value={formData.frequency}
140140
name="frequency"
141141
onChange={handleChange}
142-
className="placeholder-zinc-600"
142+
className="text-zinc-600"
143143
required
144144
>
145145
<option value="" disabled>

src/views/ShareList.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export function ShareList({ userId }) {
2828
<>
2929
<div className="manage-list-form flex flex-col h-[10vh] my-8 p-8 rounded-3xl shadow-xl overflow-hidden mx-auto bg-neutral text-white font-medium">
3030
<form onSubmit={handleEmailSubmit}>
31-
<label htmlFor="invite-email">Invite user by email:</label>
31+
<label htmlFor="invite-email" className="font-medium">
32+
Invite user by email:
33+
</label>
3234
<input
3335
id="invite-email"
3436
type="text"

0 commit comments

Comments
 (0)