Change default font weight and Fix copy

This commit is contained in:
2022-05-21 00:04:04 +02:00
parent bf8b2f3ff3
commit 7b43e50b6c
5 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@
</script> </script>
<dl class={classes}> <dl class={classes}>
<dt class="text-label">Shop your city</dt> <dt class="text-label">Choose a city</dt>
<dd> <dd>
<svg width="18" height="18"> <svg width="18" height="18">
<use xlink:href="#icon-map-pin" /> <use xlink:href="#icon-map-pin" />

View File

@@ -114,7 +114,7 @@
<nav class="shop-page__nav"> <nav class="shop-page__nav">
<div class="container"> <div class="container">
<p class="text-label">Shop your city</p> <p class="text-label">Choose a city</p>
<nav> <nav>
<ul> <ul>
{#each shopLocations as { name, slug }} {#each shopLocations as { name, slug }}

View File

@@ -109,7 +109,7 @@
<nav class="shop-page__nav"> <nav class="shop-page__nav">
<div class="container"> <div class="container">
<p class="text-label">Shop your city</p> <p class="text-label">Choose a city</p>
<nav> <nav>
<ul> <ul>
{#each shopLocations as { name, slug }} {#each shopLocations as { name, slug }}

View File

@@ -1,6 +1,6 @@
html { html {
font: #{$base-font-size}/1.2 $font-sans; font: #{$base-font-size}/1.2 $font-sans;
font-weight: 300; font-weight: 400;
color: #fff; color: #fff;
min-width: 320px; min-width: 320px;
word-break: normal; word-break: normal;

View File

@@ -134,5 +134,5 @@
line-height: 1.4; line-height: 1.4;
text-transform: uppercase; text-transform: uppercase;
letter-spacing: 1px; letter-spacing: 1px;
font-weight: 400; font-weight: 500;
} }