Skip to content

Commit 93c4816

Browse files
committed
add a better looking table to display the currently added badges
1 parent 477bb9c commit 93c4816

File tree

11 files changed

+85
-58
lines changed

11 files changed

+85
-58
lines changed

client/build/asset-manifest.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.58bab497.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.a9d02319.css.map renamed to client/build/static/css/main.58bab497.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.a9d02319.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

client/build/static/js/main.6ab12282.js renamed to client/build/static/js/main.6b464de7.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/js/main.6ab12282.js.map renamed to client/build/static/js/main.6b464de7.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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-screen min-h-screen overflow-x-hidden select-none pb-5">
1313
<Header />
1414

15-
<div className="flex gap-4 mx-10 md:mx-48 mt-6 flex-col lg:flex-row">
15+
<div className="flex gap-4 mx-10 md:mx-48 mt-6 flex-col lg:flex-row overflow-x-hidden">
1616
<Options setLink={(link: string) => setLink(link)} />
1717
<Preview link={link} />
1818
</div>

client/src/components/input/SelectInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ const SelectInput: FC<SelectInputProps> = (props) => {
2525
defaultValue={props.value}
2626
autoComplete="off"
2727
onChange={(e) => props.setValue(e.target.value)}
28-
className="w-[72%] ml-auto text-base bg-gh-bg border border-solid border-gh-border
28+
className="w-[72%] ml-auto text-base bg-gh-bg border border-solid border-gh-border
2929
rounded-md px-2 py-1 leading-none placeholder:text-gh-text-secondary text-gh-text
30-
outline-none focus:border-gh-blue-dark active:border-gh-blue-dark transition-all
30+
outline-none focus:border-gh-blue-dark active:border-gh-blue-dark transition-all
3131
duration-150"
3232
>
3333
{props.options.map((option, index) => {

0 commit comments

Comments
 (0)