-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
56 lines (50 loc) · 1.06 KB
/
Copy pathinput.css
File metadata and controls
56 lines (50 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@tailwind base;
@tailwind components;
@tailwind utilities;
::-webkit-scrollbar {
/* @apply w-3; */
@apply hidden;
}
/* ::-webkit-scrollbar-track {
@apply bg-black;
}
::-webkit-scrollbar-thumb {
@apply bg-white;
@apply rounded-s-md;
} */
html,
body {
scroll-behavior: smooth;
}
@font-face {
font-family: "popins-black";
src: url("./assets/fonts/Poppins-Black.ttf");
}
@font-face {
font-family: "popins-bold";
src: url("./assets/fonts/Poppins-Bold.ttf");
}
@font-face {
font-family: "popins-extrabold";
src: url("./assets/fonts/Poppins-ExtraBold.ttf");
}
@font-face {
font-family: "popins-extralight";
src: url("./assets/fonts/Poppins-ExtraLight.ttf");
}
@font-face {
font-family: "popins-medium";
src: url("./assets/fonts/Poppins-Medium.ttf");
}
@font-face {
font-family: "popins-semibold";
src: url("./assets/fonts/Poppins-SemiBold.ttf");
}
@font-face {
font-family: "popins-thin";
src: url("./assets/fonts/Poppins-Thin.ttf");
}
@font-face {
font-family: "popins-regular";
src: url("./assets/fonts/Poppins-Regular.ttf");
}