add day21

This commit is contained in:
Zoe
2022-10-13 20:21:16 -05:00
parent e81e847312
commit a9817c7911
38 changed files with 9561 additions and 0 deletions

7
day21/postcss.config.js Normal file
View File

@@ -0,0 +1,7 @@
import tailwind from 'tailwindcss';
import tailwindConfig from './tailwind.config.js';
import autoprefixer from 'autoprefixer';
export default {
plugins:[tailwind(tailwindConfig),autoprefixer]
};