balibabu commited on
Commit
afb702e
·
1 Parent(s): 62a5517

Feat: Set the style of the header tag #3221 (#4608)

Browse files

### What problem does this PR solve?

Feat: Set the style of the header tag #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)

Files changed (1) hide show
  1. web/tailwind.css +16 -0
web/tailwind.css CHANGED
@@ -151,4 +151,20 @@
151
  'rlig' 1,
152
  'calt' 1;
153
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154
  }
 
151
  'rlig' 1,
152
  'calt' 1;
153
  }
154
+
155
+ /* https://tailwindcss.com/docs/preflight */
156
+
157
+ h1 {
158
+ @apply text-2xl font-bold;
159
+ }
160
+ h2 {
161
+ @apply text-xl font-semibold;
162
+ }
163
+ h3 {
164
+ @apply text-lg font-medium;
165
+ }
166
+
167
+ h4 {
168
+ @apply text-base font-normal;
169
+ }
170
  }