diff --git a/.gitignore b/.gitignore index 403adbc..6c976e9 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ node_modules # local env files .env.local .env.*.local +.env # Log files npm-debug.log* diff --git a/src/components/Nav.vue b/src/components/Nav.vue index 55d5ef3..794f887 100644 --- a/src/components/Nav.vue +++ b/src/components/Nav.vue @@ -18,7 +18,7 @@

- Match Length: {{ data.matchDetails.rounds === 16 ? 'Short' : 'Long' }} + Match Length: {{ data.matchDetails.max_rounds === 16 ? 'Short' : 'Long' }} @@ -149,7 +149,6 @@ export default { rgba(0, 0, 0, 0.95) 70%, rgba(0, 0, 0, .7) 100% ); - border-bottom: 1px solid rgba(255, 255, 255, .2); .map img { width: auto; @@ -166,10 +165,10 @@ export default { z-index: 1; max-width: 100vw; background: linear-gradient(90deg, - rgba(0, 0, 0, 0) 0%, - rgba(15, 15, 15, 0.9) 25%, - rgba(15, 15, 15, 0.9) 75%, - rgba(0, 0, 0, 0) 100% + rgba(0, 0, 0, 0.6) 0%, + rgba(0, 0, 0, 0.85) 30%, + rgba(0, 0, 0, 0.85) 70%, + rgba(0, 0, 0, .6) 100% ); div { @@ -182,6 +181,14 @@ export default { .nav { max-width: 100vw; background: rgba(0, 0, 0, 0.9); + background: linear-gradient(90deg, + rgba(0, 0, 0, 0.7) 0%, + rgba(0, 0, 0, 0.95) 30%, + rgba(0, 0, 0, 0.95) 70%, + rgba(0, 0, 0, .7) 100% + ); + border-top: 1px solid rgba(255, 255, 255, .2); + border-bottom: 1px solid rgba(255, 255, 255, .2); .list-item { padding: 10px 10px;