diff --git a/src/assets/styles/variables.scss b/src/assets/styles/variables.scss index ea65a88..c2786cc 100644 --- a/src/assets/styles/variables.scss +++ b/src/assets/styles/variables.scss @@ -58,13 +58,15 @@ $mention-padding: $unit-3x; $font-stack: 'Circular Std', 'Helvetica Neue', Helvetica, Arial, sans-serif; -$font-unit: 14px; +$font-unit: 18px; +$font-unit-mobile: 16px; -$font-size-small: 0.7rem; // 10 -$font-size: 1rem; // 14 -$font-size-med: 1.25rem; // 16 -$font-size-large: 1.4rem; // 18 -$font-size-xlarge: 1.65rem; // 22 +$font-size-extra-small: 0.75rem; // 12 +$font-size-small: 0.875rem; // 14 +$font-size: 1rem; // 18 +$font-size-med: 1.25rem; // 20 +$font-size-large: 1.4rem; // 22 +$font-size-xlarge: 1.65rem; // 26 $font-weight: 400; $font-weight-med: 500; diff --git a/src/lib/components/Album.svelte b/src/lib/components/Album.svelte index de62b78..02624fb 100644 --- a/src/lib/components/Album.svelte +++ b/src/lib/components/Album.svelte @@ -97,7 +97,7 @@ } .artist-name { - font-size: $font-size-small; + font-size: $font-size-extra-small; font-weight: $font-weight-med; color: $grey-40; } diff --git a/src/lib/components/Game.svelte b/src/lib/components/Game.svelte index cb76743..214faf1 100644 --- a/src/lib/components/Game.svelte +++ b/src/lib/components/Game.svelte @@ -104,7 +104,7 @@ } .game-playtime { - font-size: $font-size-small; + font-size: $font-size-extra-small; font-weight: $font-weight-med; color: $grey-40; } diff --git a/src/lib/components/admin/MediaUploadModal.svelte b/src/lib/components/admin/MediaUploadModal.svelte index cccb38a..71da2ec 100644 --- a/src/lib/components/admin/MediaUploadModal.svelte +++ b/src/lib/components/admin/MediaUploadModal.svelte @@ -1,7 +1,6 @@