Skip to content

Commit

Permalink
Fix fonts url path (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamaragmartin authored Jul 7, 2023
1 parent a73c8c8 commit ad88512
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/wwwroot/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,35 @@

@font-face {
font-family: 'Baloo Da 2';
src: url('static/BalooDa2-Regular.ttf') format('truetype');
src: url('../static/BalooDa2-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'Baloo Da 2';
src: url('static/BalooDa2-Medium.ttf') format('truetype');
src: url('../static/BalooDa2-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}

@font-face {
font-family: 'Baloo Da 2';
src: url('static/BalooDa2-SemiBold.ttf') format('truetype');
src: url('../static/BalooDa2-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
}

@font-face {
font-family: 'Baloo Da 2';
src: url('static/BalooDa2-Bold.ttf') format('truetype');
src: url('../static/BalooDa2-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}

@font-face {
font-family: 'Baloo Da 2';
src: url('static/BalooDa2-ExtraBold.ttf') format('truetype');
src: url('../static/BalooDa2-ExtraBold.ttf') format('truetype');
font-weight: 800;
font-style: normal;
}
Expand Down

0 comments on commit ad88512

Please sign in to comment.