Make tournament banner text visible in light mode

This commit is contained in:
Kalle
2023-05-18 00:49:47 +03:00
parent cb99891dee
commit 9ba072b3c3
3 changed files with 6 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ jobs:
- name: Lint TS
run: npm run lint:ts
- name: Stylelint
run: npm run lint:styles
run: npm run lint:css
- name: Typecheck
run: npm run typecheck
- name: Check translations jsons

View File

@@ -49,6 +49,7 @@
background: rgb(0 0 0 / 25%);
border-start-end-radius: var(--rounded);
border-start-start-radius: var(--rounded);
color: var(--badge-text);
}
.tournament-bracket__stage-banner__bottom-bar {

View File

@@ -26,15 +26,15 @@
"placements": "node --experimental-specifier-resolution=node --loader ts-node/esm -r tsconfig-paths/register scripts/placements/index.ts",
"hex-to-filter": "node --experimental-specifier-resolution=node --loader ts-node/esm -r tsconfig-paths/register scripts/hex-to-filter.ts",
"lint:ts": "eslint . --ext .ts,.tsx",
"lint:styles": "stylelint \"app/styles/**/*.css\"",
"lint:css": "stylelint \"app/styles/**/*.css\"",
"prettier:check": "prettier --check . --loglevel warn",
"prettier:write": "prettier --write . --loglevel warn",
"typecheck": "tsc --noEmit",
"test:unit": "uvu -r tsm -r tsconfig-paths/register -i e2e",
"test:e2e": "npx playwright test",
"checks": "npm run test:unit && npm run lint:styles && npm run lint:ts && npm run prettier:check && npm run typecheck",
"cf": "npm run test:unit && npm run check-translation-jsons && npm run lint:styles -- --fix && npm run lint:ts -- --fix && npm run prettier:write && npm run typecheck && npm run test:e2e",
"cf:noe2e": "npm run test:unit && npm run check-translation-jsons && npm run lint:styles -- --fix && npm run lint:ts -- --fix && npm run prettier:write && npm run typecheck"
"checks": "npm run test:unit && npm run lint:css && npm run lint:ts && npm run prettier:check && npm run typecheck",
"cf": "npm run test:unit && npm run check-translation-jsons && npm run lint:css -- --fix && npm run lint:ts -- --fix && npm run prettier:write && npm run typecheck && npm run test:e2e",
"cf:noe2e": "npm run test:unit && npm run check-translation-jsons && npm run lint:css -- --fix && npm run lint:ts -- --fix && npm run prettier:write && npm run typecheck"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",