-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
31 lines (25 loc) · 772 Bytes
/
tailwind.css
File metadata and controls
31 lines (25 loc) · 772 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css');
@layer base {
html,
body {
font-family: 'Open Sans', sans-serif;
@apply antialiased bg-gray-50
}
}
.flag-select {
@apply !pb-0
}
.flag-select button {
@apply h-14 border-[3px] bg-white rounded border-gray-200 transition-colors hover:border-primary-brand-color
}
.flag-select button >span span:nth-child(2) {
@apply text-sm pl-2
}
.ReactCollapse--collapse {
@apply transition-all
}