diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 1eed2b7..3449ba0 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -16,6 +16,7 @@ "date-fns": "^4.1.0", "primeicons": "^7.0.0", "primevue": "^4.3.9", + "text-title-case": "^1.2.9", "vue": "^3.5.18", "vue-router": "^4.5.1" }, @@ -4956,6 +4957,37 @@ "url": "https://opencollective.com/synckit" } }, + "node_modules/text-lower-case": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/text-lower-case/-/text-lower-case-1.2.9.tgz", + "integrity": "sha512-53AOnDrhPpiAUQkgY1SHleKUXp/u7GsqRX13NcCREZscmtjLLJ099uxMRjkK7q2KwHkFYVPl9ytkQlTkTQLS0w==", + "license": "MIT" + }, + "node_modules/text-no-case": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/text-no-case/-/text-no-case-1.2.9.tgz", + "integrity": "sha512-IcCt328KaapimSrytP4ThfC8URmHZb2DgOqCL9BYvGjpxY2lDiqCkIQk9sClZtwcELs2gTnq83a7jNc573FTLA==", + "license": "MIT", + "dependencies": { + "text-lower-case": "1.2.9" + } + }, + "node_modules/text-title-case": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/text-title-case/-/text-title-case-1.2.9.tgz", + "integrity": "sha512-RAtC9cdmPp41ns5/HXZBsaQg71BsHT7uZpj2ojTtuFa8o2dNuRYYOrSmy5YdLRIAJQ6WK5hQVpV3jHuq7a+4Tw==", + "license": "MIT", + "dependencies": { + "text-no-case": "1.2.9", + "text-upper-case-first": "1.2.9" + } + }, + "node_modules/text-upper-case-first": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/text-upper-case-first/-/text-upper-case-first-1.2.9.tgz", + "integrity": "sha512-wEDD1B6XqJmEV+xEnBJd+2sBCHZ+7fvA/8Rv/o8+dAsp05YWjYP/kjB8sPH6zqzW0s6jtehIg4IlcKjcYxk2CQ==", + "license": "MIT" + }, "node_modules/tinyglobby": { "version": "0.2.15", "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", diff --git a/frontend/package.json b/frontend/package.json index 8fb1450..de5db2b 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -25,6 +25,7 @@ "date-fns": "^4.1.0", "primeicons": "^7.0.0", "primevue": "^4.3.9", + "text-title-case": "^1.2.9", "vue": "^3.5.18", "vue-router": "^4.5.1" }, diff --git a/frontend/src/assets/main.css b/frontend/src/assets/main.css index c0d34b6..e2c86f7 100644 --- a/frontend/src/assets/main.css +++ b/frontend/src/assets/main.css @@ -16,7 +16,6 @@ width: 100%; } .title { - font-size: 1.1em; font-weight: bold; margin-bottom: 10px; } diff --git a/frontend/src/components/user-stats/IndexerStatsEvolutions.vue b/frontend/src/components/user-stats/IndexerStatsEvolutions.vue index ca5de0f..8a26a5c 100644 --- a/frontend/src/components/user-stats/IndexerStatsEvolutions.vue +++ b/frontend/src/components/user-stats/IndexerStatsEvolutions.vue @@ -1,8 +1,9 @@