Compare commits

...

4 Commits

Author SHA1 Message Date
Renovate Bot
def4b9962a Update dependency eslint-plugin-react-refresh to v0.4.26 2026-01-12 11:04:23 +00:00
acc6bc4359 remove border from black theme 2026-01-12 11:21:45 +01:00
5dfe1fbb98 price rounding 2026-01-12 11:19:21 +01:00
fdbd88dd7e change $ to € 2026-01-12 11:14:42 +01:00
6 changed files with 11 additions and 12 deletions

View File

@ -47,7 +47,7 @@ importers:
version: 7.0.1(eslint@9.39.1) version: 7.0.1(eslint@9.39.1)
eslint-plugin-react-refresh: eslint-plugin-react-refresh:
specifier: ^0.4.24 specifier: ^0.4.24
version: 0.4.24(eslint@9.39.1) version: 0.4.26(eslint@9.39.1)
globals: globals:
specifier: ^16.5.0 specifier: ^16.5.0
version: 16.5.0 version: 16.5.0
@ -425,7 +425,7 @@ packages:
resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==} resolution: {integrity: sha512-EcA07pHJouywpzsoTUqNh5NwGayl2PPVEJKUSinGGSxFGYn+shYbqMGBg6FXDqgXum9Ou/ecb+411ssw8HImJQ==}
engines: {node: ^20.19.0 || >=22.12.0} engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies: peerDependencies:
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 vite: npm:rolldown-vite@7.2.5
acorn-jsx@5.3.2: acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
@ -545,8 +545,8 @@ packages:
peerDependencies: peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
eslint-plugin-react-refresh@0.4.24: eslint-plugin-react-refresh@0.4.26:
resolution: {integrity: sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w==} resolution: {integrity: sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==}
peerDependencies: peerDependencies:
eslint: '>=8.40' eslint: '>=8.40'
@ -1568,7 +1568,7 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
eslint-plugin-react-refresh@0.4.24(eslint@9.39.1): eslint-plugin-react-refresh@0.4.26(eslint@9.39.1):
dependencies: dependencies:
eslint: 9.39.1 eslint: 9.39.1

View File

@ -333,9 +333,9 @@ export function EditGame({ onShowToast }: Props) {
<input <input
type="number" type="number"
value={price} value={price}
onChange={(e) => setPrice(Number(e.target.value.replace(',', '.')))} onChange={(e) => setPrice(Math.ceil(Number(e.target.value.replace(',', '.'))))}
min="0" min="0"
step="0.01" step="1"
style={inputStyles} style={inputStyles}
className="add-game-input" className="add-game-input"
/> />

View File

@ -78,7 +78,7 @@ export function GameFilter() {
</div> </div>
<div className="filter-group"> <div className="filter-group">
<label htmlFor="max-price">Maximum price ($)</label> <label htmlFor="max-price">Maximum price ()</label>
<input <input
id="max-price" id="max-price"
type="number" type="number"

View File

@ -463,9 +463,9 @@ export function GameList({ onShowToast }: Props) {
<input <input
type="number" type="number"
value={price} value={price}
onChange={(e) => setPrice(Number(e.target.value.replace(',', '.')))} onChange={(e) => setPrice(Math.ceil(Number(e.target.value.replace(',', '.'))))}
min="0" min="0"
step="0.01" step="1"
style={inputStyles} style={inputStyles}
className="add-game-input" className="add-game-input"
/> />

View File

@ -86,7 +86,7 @@ export function FilteredGamesList({
fontWeight: 600, fontWeight: 600,
}} }}
> >
${price === 0 ? "0 (Free)" : price} {price === 0 ? "0 (Free)" : price}
</div> </div>
</div> </div>
<GameImage game={game} /> <GameImage game={game} />

View File

@ -129,7 +129,6 @@ ul {
--secondary-bg: rgb(0, 0, 0, 0.7); /* Translucent cards */ --secondary-bg: rgb(0, 0, 0, 0.7); /* Translucent cards */
--secondary-alt-bg: rgb(20, 20, 20, 0.6); /* Translucent inputs */ --secondary-alt-bg: rgb(20, 20, 20, 0.6); /* Translucent inputs */
--tertiary-bg: rgb(40, 40, 40, 0.8); --tertiary-bg: rgb(40, 40, 40, 0.8);
--border-color: rgb(255, 255, 255, 0.15);
--text-color: #ffffff; --text-color: #ffffff;
--accent-color: #121212; --accent-color: #121212;
--secondary-accent: #212121; --secondary-accent: #212121;