aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/styles/global.css
blob: 0bbfc2ec72561d72fe33a1884615c07788f28a30 (plain)
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
@tailwind base;

* {
	font-family: 'Poppins', sans-serif;
}

@layer base {
	:focus-visible {
		@apply outline-none ring ring-blue-500;
	}

	/* Has to be split because css parser moment */
	::-moz-selection {
		@apply bg-blue-500/20;
	}

	::selection {
		@apply bg-blue-500/20;
	}

	html,
	body {
		@apply text-[14px] md:text-[16px];
	}
}