-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.module.css
83 lines (67 loc) · 1.25 KB
/
App.module.css
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
79
80
81
82
83
.container {
display: flex;
flex-direction: column;
height: 100vh;
max-height: 100vh;
overflow: auto;
}
.container::-webkit-scrollbar {
width: 12px;
}
.container::-webkit-scrollbar-thumb {
background: var(--gray-400);
border-radius: 10px;
border: none;
}
.container::-webkit-scrollbar-thumb:hover {
background: var(--gray-300);
}
.container {
scrollbar-width: thin;
scrollbar-color: var(--gray-400) transparent;
}
.content {
display: flex;
flex-direction: column;
flex: 1;
width: 100%;
max-width: calc(46rem + 1.5rem);
margin: 0 auto;
padding: 0 1.5rem;
}
.formWrapper {
display: flex;
align-items: center;
gap: 0.5rem;
transform: translateY(calc(-50%));
margin-bottom: calc(4rem * 0.5);
}
.createButton {
display: flex;
align-items: center;
justify-content: center;
font-size: 0.875rem;
font-weight: bold;
color: var(--gray-100);
line-height: 0;
gap: 0.5rem;
padding: 1rem;
cursor: pointer;
border: none;
border-radius: 8px;
background-color: var(--blue-dark);
}
.createButton:hover {
background-color: var(--blue);
}
.taskListWrapper {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin-bottom: 2rem;
}
@media (max-width: 768px) {
html {
font-size: 87.5%;
}
}