From a0a719500c5d2cf8426c8502a181d7ceb50830fb Mon Sep 17 00:00:00 2001 From: Dani Devito Date: Sat, 6 Feb 2021 17:09:38 +0700 Subject: [PATCH] fix package.json + resolve deps node>=14 + init tailwindcss + draft form_event --- community_app/package.json | 23 +++--- community_app/tailwind.config.js | 9 +++ template/form_event.html | 120 +++++++++++++++++++++++++++++++ 3 files changed, 142 insertions(+), 10 deletions(-) create mode 100644 community_app/tailwind.config.js create mode 100644 template/form_event.html diff --git a/community_app/package.json b/community_app/package.json index a7b64c4..3ddb034 100644 --- a/community_app/package.json +++ b/community_app/package.json @@ -1,22 +1,25 @@ { "name": "community_app", "version": "0.1.0", - "dependencies": {}, + "dependencies": { + "@tailwindcss/forms": "^0.2.1", + "tailwindcss": "^2.0.2" + }, "devDependencies": { - "autoprefixer": "^9.4.7", - "browser-sync": "^2.14.0", + "autoprefixer": "^10.2.4", + "browser-sync": "^2.26.14", "cssnano": "^4.1.10", - "gulp": "^4.0.0", - "gulp-imagemin": "^5.0.3", + "gulp": "^4.0.2", + "gulp-imagemin": "^7.1.0", "gulp-plumber": "^1.2.1", - "gulp-postcss": "^8.0.0", - "gulp-rename": "^1.2.2", - "gulp-sass": "^4.0.2", - "gulp-uglify-es": "^1.0.4", + "gulp-postcss": "^9.0.0", + "gulp-rename": "^2.0.0", + "gulp-sass": "^4.1.0", + "gulp-uglify-es": "^2.0.0", "pixrem": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=14" }, "browserslist": [ "last 2 versions" diff --git a/community_app/tailwind.config.js b/community_app/tailwind.config.js new file mode 100644 index 0000000..3463d2f --- /dev/null +++ b/community_app/tailwind.config.js @@ -0,0 +1,9 @@ +module.exports = { + theme: { + extend: {} + }, + variants: {}, + plugins: [ + require("@tailwindcss/forms") + ] +}; diff --git a/template/form_event.html b/template/form_event.html new file mode 100644 index 0000000..f09c8b4 --- /dev/null +++ b/template/form_event.html @@ -0,0 +1,120 @@ + + + + + + + + + + +
+
+
+ +
+
+
+
+

Event

+

+ Describe your awesome event +

+
+
+
+
+
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+

+ Brief description for your event. +

+
+ +
+ +
+ + +
+
+ +
+ +
+ + +
+
+ +
+
+ +
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+ \ No newline at end of file