radames commited on
Commit
b23f1a7
1 Parent(s): 2e647a6

remove quotes

Browse files
Files changed (1) hide show
  1. client/tailwind.config.cjs +14 -1
client/tailwind.config.cjs CHANGED
@@ -1,7 +1,20 @@
1
  module.exports = {
2
  content: ['./src/**/*.{html,js,svelte,ts}'],
3
  theme: {
4
- extend: {}
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  },
6
  plugins: [require('@tailwindcss/typography')]
7
  };
 
1
  module.exports = {
2
  content: ['./src/**/*.{html,js,svelte,ts}'],
3
  theme: {
4
+ extend: {
5
+ typography: {
6
+ DEFAULT: {
7
+ css: {
8
+ 'code::before': {
9
+ content: '""'
10
+ },
11
+ 'code::after': {
12
+ content: '""'
13
+ }
14
+ }
15
+ }
16
+ },
17
+ },
18
  },
19
  plugins: [require('@tailwindcss/typography')]
20
  };