Skip to content

Commit d45900d

Browse files
committed
adjust colors on sharelist and managelist buttons
1 parent cce0b1d commit d45900d

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

src/views/ManageList.jsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,11 @@ export function ManageList({ list }) {
120120
required
121121
></input>
122122

123-
<button type="button" onClick={handleVoiceTransform}>
123+
<button
124+
type="button"
125+
onClick={handleVoiceTransform}
126+
className="bg-accent text-black hover:text-white"
127+
>
124128
{isListening ? (
125129
'Listening...'
126130
) : (
@@ -149,8 +153,12 @@ export function ManageList({ list }) {
149153
<option value="14">Kind of Soon (14 Days)</option>
150154
<option value="30">Not Soon (30 Days)</option>
151155
</select>
152-
153-
<button type="submit">Submit</button>
156+
<button
157+
type="submit"
158+
className="bg-accent text-black hover:text-white"
159+
>
160+
Submit
161+
</button>
154162
</form>
155163
</div>
156164
</>

src/views/ShareList.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ export function ShareList({ userId }) {
4242
className="text-black placeholder-zinc-600"
4343
></input>
4444

45-
<button type="submit">Share List</button>
45+
<button
46+
type="submit"
47+
className="bg-accent text-black hover:text-white"
48+
>
49+
Share List
50+
</button>
4651
</form>
4752
</div>
4853
</>

0 commit comments

Comments
 (0)