From f64955c69d91e578e580b409ba31ac4b3477da96 Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 12 Jul 2023 01:28:23 -0400 Subject: Initial commit --- front-end/src/bootstrap/style/headings.scss | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 front-end/src/bootstrap/style/headings.scss (limited to 'front-end/src/bootstrap/style/headings.scss') diff --git a/front-end/src/bootstrap/style/headings.scss b/front-end/src/bootstrap/style/headings.scss new file mode 100644 index 0000000..326a7c2 --- /dev/null +++ b/front-end/src/bootstrap/style/headings.scss @@ -0,0 +1,32 @@ +h1, +h2, +h3, +h4, +h5, +h6 { + @apply font-medium leading-tight mt-0 mb-2; +} + +h1 { + @apply sm:text-5xl text-4xl; +} + +h2 { + @apply sm:text-4xl text-3xl; +} + +h3 { + @apply sm:text-3xl text-2xl; +} + +h4 { + @apply sm:text-2xl text-xl; +} + +h5 { + @apply sm:text-xl text-lg; +} + +h6 { + @apply sm:text-base text-sm; +} \ No newline at end of file -- cgit