-
Notifications
You must be signed in to change notification settings - Fork 0
/
globalStyles.ts
78 lines (61 loc) · 1.26 KB
/
globalStyles.ts
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { createGlobalStyle } from "styled-components";
export const GlobalStyle = createGlobalStyle`
*,
*::before,
*::after {
margin: 0;
padding: 0;
border: 0;
box-sizing: border-box;
}
body {
background: #060B28;
color: #ffffff;
font-family: 'Montserrat', sans-serif;
&::-webkit-scrollbar {
width: 1rem;
}
&::-webkit-scrollbar-track {
background: #060B28;
}
&::-webkit-scrollbar-thumb {
background-color: #2F5AFF;
border-radius: .5rem;
border: 0.25rem solid #060B28;
}
}
ul {
list-style: none;
}
a {
text-decoration: none;
}
button {
font-family: 'Montserrat', sans-serif;
cursor: pointer;
}
img {
display: block;
max-width: 100%;
height: auto;
}
.main-container {
max-width: 78rem;
padding: 0 1rem;
margin: 0 auto;
}
.button {
background: linear-gradient(180deg, #151a37 0%, rgba(21, 26, 55, 0) 100%);
border: 1px solid #24293f;
border-radius: 0.5rem;
padding: 0.75rem 1rem;
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
font-size: 1rem;
line-height: 150%;
font-weight: 700;
color: #ffffff;
}
`