Skip to content

Commit 37fa78b

Browse files
committed
client: fix axe devtools issues
1 parent 4f7fee9 commit 37fa78b

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

client/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta
88
name="description"
9-
content="Dynamically generated, customizable technologies cards for your GitHub README."
9+
content="Display your favorite technologies, tools, or the tech stack your project uses with these fully customizable, good-looking cards on your GitHub README!"
1010
/>
1111
<meta http-equiv="Cache-Control" content="no-store, no-cache" />
1212
<meta http-equiv="Pragma" content="no-cache" />

client/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const App = () => {
1212
<div className="bg-gh-bg w-full min-h-screen overflow-x-hidden select-none pb-5">
1313
<Header />
1414

15-
<main className="flex gap-4 mx-4 md:mx-32 lg:mx-36 mt-6 flex-col lg:flex-row">
15+
<main className="flex gap-4 mx-4 sm:mx-10 md:mx-32 lg:mx-36 mt-6 flex-col lg:flex-row">
1616
<Options setLink={(link: string) => setLink(link)} />
1717
<Preview link={link} />
1818
</main>

client/src/components/input/ColorInput.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ const ColorInput: FC<ColorInputProps> = (props) => {
6565
onChange={(e) => props.setValue(e.target.value)}
6666
type="color"
6767
autoComplete="off"
68+
aria-label="Select Color"
6869
className="text-base border border-solid rounded-md px-2 py-1
6970
leading-none cursor-pointer border-gh-button-border
7071
bg-gh-button hover:bg-gh-button-active hover:border-gh-button-border-active

client/src/components/input/Input.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ const Input: FC<InputProps> = (props) => {
6767

6868
<button
6969
type="button"
70+
aria-label="Clear"
7071
onMouseDown={() => props.setValue("")}
7172
className={twMerge(
7273
`absolute top-1/2 -translate-y-1/2 cursor-pointer right-2

client/src/pages/Options.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ const Options: FC<OptionsProps> = (props) => {
233233
<SecondaryButton
234234
onClick={() => setCard(newCard())}
235235
text="Reset"
236-
className="text-red-500 font-semibold"
236+
className="text-red-400 font-semibold"
237237
/>
238238
</div>
239239
</div>

0 commit comments

Comments
 (0)