tailwind.css 599 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
	html {
Timothy J. Baek's avatar
Timothy J. Baek committed
7
		font-family: -apple-system, 'Arimo', ui-sans-serif, system-ui, 'Segoe UI', Roboto, Ubuntu,
Timothy J. Baek's avatar
Timothy J. Baek committed
8
9
10
11
12
			Cantarell, 'Noto Sans', sans-serif, 'Helvetica Neue', Arial, 'Apple Color Emoji',
			'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	}

	pre {
Timothy J. Baek's avatar
Timothy J. Baek committed
13
		font-family: -apple-system, 'Arimo', ui-sans-serif, system-ui, 'Segoe UI', Roboto, Ubuntu,
Timothy J. Baek's avatar
Timothy J. Baek committed
14
15
16
17
18
			Cantarell, 'Noto Sans', sans-serif, 'Helvetica Neue', Arial, 'Apple Color Emoji',
			'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
		white-space: pre-wrap;
	}
}