diff --git a/assets/styles/global.scss b/assets/styles/global.scss index 0f95ccf6..34574080 100644 --- a/assets/styles/global.scss +++ b/assets/styles/global.scss @@ -2,6 +2,10 @@ html { @extend .light-mode; } +body { + overflow-y: scroll; +} + .light-mode { --color-icon: #6b7280; --color-text: hsl(221, 39%, 11%); diff --git a/assets/styles/layout.scss b/assets/styles/layout.scss index 5b8324a0..d2d4fbea 100644 --- a/assets/styles/layout.scss +++ b/assets/styles/layout.scss @@ -55,7 +55,7 @@ } .normal-page__content { - padding-left: 1rem; + padding-left: 0.75rem; width: 60rem; } } diff --git a/components/ui/ProjectCard.vue b/components/ui/ProjectCard.vue index d48add53..98621e98 100644 --- a/components/ui/ProjectCard.vue +++ b/components/ui/ProjectCard.vue @@ -69,13 +69,19 @@

- {{ formatNumber(downloads) }} downloads + {{ formatNumber(downloads) }} downloads

- {{ formatNumber(follows) }} followers + {{ formatNumber(follows) }} followers

diff --git a/nuxt.config.js b/nuxt.config.js index c61ad9aa..9ef8b427 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -27,7 +27,7 @@ export default { hid: 'description', name: 'description', content: - 'Modrinth is a _type distribution platform. Modrinth is modern, easy to use, and built for modders. Modrinth currently supports Minecraft, including Forge and Fabric mod loaders.', + 'Modrinth is a mod distribution platform. Modrinth is modern, easy to use, and built for modders. Modrinth currently supports Minecraft, including Forge and Fabric mod loaders.', }, { @@ -282,7 +282,7 @@ export default { }, publicRuntimeConfig: { axios: { - browserBaseURL: process.env.BROWSER_BASE_URL, + browserBaseURL: process.env.BASE_URL, }, ads: { ghostMode: process.env.ENABLE_ADS == null, diff --git a/pages/_type/_id.vue b/pages/_type/_id.vue index ff534f87..e940be26 100644 --- a/pages/_type/_id.vue +++ b/pages/_type/_id.vue @@ -71,9 +71,13 @@
{{ formatNumber(project.downloads) }} - downloads + downloads {{ formatNumber(project.followers) }} - followers + followers
@@ -89,7 +93,7 @@ {{ $dayjs(project.updated).fromNow() }}
-
+
-
+ +
@@ -59,10 +63,31 @@