diff --git a/src/App.vue b/src/App.vue
index fe60ea4..fb713ee 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -17,7 +17,6 @@
\ No newline at end of file
diff --git a/src/components/TheHeader.vue b/src/components/TheHeader.vue
index f673bab..40f5b8d 100644
--- a/src/components/TheHeader.vue
+++ b/src/components/TheHeader.vue
@@ -1,17 +1,12 @@
- .header-wrapper
- .header-left-side
+ div.header-wrapper
+ div.header-left-side
img.logo-img(src="@/assets/images/logo.svg" alt="Logo")
- .header-right-side
- .header-inputs-wrapper
- img.search-icon(src="@/assets/icons/search.svg" alt="Search")
- select.header-inputs.select(v-model="selectedFilter")
- option(v-for="filter in filters" :key="filter" :value="filter") {{ filter }}
- span.header-inputs-separator
- input.header-inputs.search-input(placeholder="Искать ...")
+ div.header-right-side
+ header-inputs
button.header-buttons.btn-notification
img.bell-icon(src="@/assets/icons/bell.svg" alt="Notifications")
- .avatar-wrapper
+ div.avatar-wrapper
img.avatar-img(:src="avatarSrc")
button.header-buttons.btn-down-arrow
img.arrow-icon(src="@/assets/icons/down-arrow-2.svg" alt="Down Arrow")
@@ -19,12 +14,12 @@
diff --git a/src/main.js b/src/main.js
index 638d318..0552a9c 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,8 +1,9 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from "./router";
+import './assets/sass/fonts.sass'
import './assets/sass/tailwind.sass'
+import './assets/sass/variables.sass'
import './assets/css/iconfonts.css'
-import './assets/css/variables.css'
createApp(App).use(router).mount('#app')
diff --git a/tailwind.config.js b/tailwind.config.js
index d27026d..cac699b 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -3,6 +3,23 @@ module.exports = {
'./index.html',
'./src/**/*.{js,jsx,ts,tsx,vue}',
],
- theme: {},
+ theme: {
+ extend: {
+ fontFamily: {
+ sans: ['Raleway', 'sans-serif'],
+ },
+ fontSize: {
+ xxs: ['12px', { lineHeight: '14px' }],
+ xs: ['13px', { lineHeight: '15px' }],
+ sm: ['14px', { lineHeight: '16px' }],
+ base: ['16px', { lineHeight: '19px' }],
+ m: ['16px', { lineHeight: '21.6px' }],
+ lg: ['18px', { lineHeight: '21px' }],
+ xl: ['20px', { lineHeight: '23px' }],
+ '2xl': ['28px', { lineHeight: '33px' }],
+ '3xl': ['60px', { lineHeight: '70px' }],
+ }
+ },
+ },
plugins: [],
};