-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobal.css
78 lines (67 loc) · 1.73 KB
/
global.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "__calSans";
src: url(/fonts/CalSans-SemiBold.woff2);
font-style: normal;
font-weight: 600;
font-display: swap;
}
.lucide-icon {
width: 24px;
height: 24px;
stroke: currentColor;
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}
.font-plus-jakarta-sans {
--font-inter: "Plus Jakarta Sans", sans-serif;
}
.font-calsans {
--font-calsans: "__calSans", sans-serif;
}
.tour-wrapper {
background-color: theme("colors.zinc.700");
color: theme("colors.zinc.100");
min-height: theme("spacing.32");
display: flex !important;
flex-direction: column;
justify-content: space-between;
}
.tour-wrapper .driver-popover-title {
font-size: theme("fontSize.lg");
}
.tour-wrapper .driver-popover-title,
.tour-wrapper .driver-popover-description,
.tour-wrapper .driver-popover-progress-text {
color: theme("colors.zinc.100");
}
.tour-wrapper button {
text-align: center;
background-color: theme("colors.zinc.800");
color: theme("colors.zinc.100");
border: 2px solid theme("colors.zinc.800");
text-shadow: none;
font-size: theme("fontSize.sm");
padding: theme("spacing.2") theme("spacing.4");
border-radius: theme("borderRadius.md");
}
.tour-wrapper button:hover {
background-color: theme("colors.zinc.900");
}
.tour-wrapper .driver-popover-navigation-btns {
justify-content: space-between;
gap: 3px;
}
.tour-wrapper .driver-popover-close-btn {
padding: 0;
background-color: transparent;
border: none;
}
.tour-wrapper .driver-popover-close-btn:hover {
color: theme("colors.zinc.200");
background-color: transparent;
}