Добавлены шрифты

This commit is contained in:
Daria Golova
2022-09-30 16:31:15 +03:00
parent 55440e3ba8
commit 099227fb59
6 changed files with 13 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,11 @@
@font-face
font-family: "Raleway"
font-style: normal
font-weight: 500
src : url("../fonts/Raleway-Medium.ttf") format("truetype")
@font-face
font-family: "Raleway"
font-style: normal
font-weight: 700
src : url("../fonts/Raleway-Bold.ttf") format("truetype")

View File

@@ -0,0 +1 @@
@import "./fonts.sass"

View File

@@ -1,4 +1,5 @@
import { createApp } from 'vue' import { createApp } from 'vue'
import App from './App.vue' import App from './App.vue'
import './assets/sass/styles.sass'
createApp(App).mount('#app') createApp(App).mount('#app')