Skip to content
Snippets Groups Projects
Commit 3cc5e775 authored by Aliaksandr BUDZKO's avatar Aliaksandr BUDZKO
Browse files

fix: fix incorrect font

parent 3ff78c76
Branches
No related tags found
No related merge requests found
Showing
with 12 additions and 16 deletions
......@@ -3,7 +3,6 @@
.TakiButton {
font-family: $primary_font;
font-weight: $primary_font_weight;
background: $primary_pink;
color: white;
border-color: $primary_pink;
......
......@@ -6,7 +6,6 @@
display: flex;
font-family: $primary_font;
font-weight: $primary_font_weight;
color: $primary_black;
.Logo {
......
......@@ -28,7 +28,6 @@ html {
.footer {
text-align: center;
font-family: $primary_font;
font-weight: $primary_font_weight;
min-width: fit-content;
......
......@@ -14,7 +14,6 @@
align-items: center;
flex-wrap: wrap;
font-family: $primary_font;
font-weight: $primary_font_weight;
padding-top: 10%;
position: relative;
......@@ -61,7 +60,6 @@
Button {
font-family: $primary_font;
font-weight: $primary_font_weight;
font-size: 0.9vw;
width: 100%;
height: 30%;
......@@ -121,7 +119,6 @@
align-items: center;
margin-bottom: 5%;
font-family: $primary_font;
font-weight: $primary_font_weight;
font-size: 0.9vw;
width: 100%;
height: 30%;
......@@ -181,7 +178,6 @@
Button {
font-family: $primary_font;
font-weight: $primary_font_weight;
font-size: 2vw;
width: 100%;
height: 50%;
......
......@@ -13,7 +13,6 @@
flex-direction: column;
align-items: center;
font-family: $primary_font;
font-weight: $primary_font_weight;
.UpperBlock {
margin-top: 5%;
......
......@@ -13,12 +13,10 @@
justify-content: center;
flex-wrap: wrap;
font-weight: $primary_font_weight;
font-family: $primary_font;
color: $primary_black;
.LeftSide {
font-weight: $primary_font_weight;
font-family: $primary_font;
display: flex;
flex-direction: column;
......
......@@ -25,7 +25,6 @@
.RightSide {
color: $primary_black;
font-weight: $primary_font_weight;
font-family: $primary_font;
vertical-align: middle;
flex-basis: 40%;
......
......@@ -9,7 +9,6 @@
background-size: 25% 25%;
background-repeat: no-repeat;
font-weight: $primary_font_weight;
font-family: $primary_font;
min-height: 90vh;
......
......@@ -14,7 +14,6 @@
flex-wrap: wrap;
color: $primary_black;
font-weight: $primary_font_weight;
font-family: $primary_font;
.LeftSide {
......
......@@ -23,7 +23,6 @@
.RightSide {
color: $primary_black;
font-weight: $primary_font_weight;
font-family: $primary_font;
text-align: left;
padding: 1% 3%;
......
$primary_font: Hiragino Kaku Gothic StdN;
$primary_font_weight: 800;
\ No newline at end of file
$primary_font_weight: 800;
@font-face {
font-family: primaryFont;
src: url('./hiragino-kaku-gothic-stdn-w8.otf');
font-weight: $primary_font_weight;
font-style: normal;
}
$primary_font: primaryFont;
\ No newline at end of file
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment