aboutsummaryrefslogtreecommitdiff
path: root/extension/src/assets/headings.scss
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-10-03 22:44:31 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-10-03 22:44:31 -0400
commit8f75b74c1cdc7a9bd4a29392b481b8902eafba53 (patch)
tree1172761360c7b003d5a3f254e274b3597b0f7fa4 /extension/src/assets/headings.scss
parentcc3c808fbb83ad54691046e2d30211d25fc10cbb (diff)
tiny ui updates & backend lib patches
Diffstat (limited to 'extension/src/assets/headings.scss')
-rw-r--r--extension/src/assets/headings.scss32
1 files changed, 32 insertions, 0 deletions
diff --git a/extension/src/assets/headings.scss b/extension/src/assets/headings.scss
new file mode 100644
index 0000000..fe9b039
--- /dev/null
+++ b/extension/src/assets/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-4xl text-3xl;
+}
+
+h2 {
+ @apply sm:text-3xl text-2xl;
+}
+
+h3 {
+ @apply sm:text-2xl text-xl;
+}
+
+h4 {
+ @apply sm:text-xl text-lg;
+}
+
+h5 {
+ @apply sm:text-lg text-base;
+}
+
+h6 {
+ @apply sm:text-base text-sm;
+} \ No newline at end of file