Skip to content

Commit

Permalink
Add Git ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
keshansandeepa authored and azhamn committed Apr 8, 2020
1 parent 3539479 commit 8fbf611
Show file tree
Hide file tree
Showing 14 changed files with 959 additions and 462 deletions.
357 changes: 354 additions & 3 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,24 @@
"main": "index.js",
"dependencies": {
"axios": "^0.19.2",
"element-tiptap": "^1.18.0",
"element-ui": "^1.4.13",
"node-sass": "^4.13.1",
"tailwindcss": "^1.2.0",
"tiptap": "^1.26.8",
"tiptap-extensions": "^1.28.8",
"vue": "^2.6.11",
"vue-flatpickr-component": "^8.1.5",
"vue-google-autocomplete": "^1.1.0",
"vue-js-modal": "^1.3.33",
"vue-select": "^3.9.5",
"vue-sweetalert2": "^3.0.3",
"vue-trix": "^1.1.9",
"vuelidate": "^0.7.5"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@tailwindcss/custom-forms": "^0.2.1",
"cross-env": "^7.0.2",
"laravel-mix": "^5.0.4",
"laravel-mix-purgecss": "^5.0.0-rc.1",
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spring:
datasource:
url: jdbc:mysql://127.0.0.1:3306/covid19_db?useUnicode=yes&characterEncoding=UTF-8
username: root
password: root
password: keshan
hikari.maximumPoolSize: 25
idhs:
url: http://43.224.124.234:7080/api
Expand Down
47 changes: 47 additions & 0 deletions src/main/resources/css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
@import "tailwindcss/base";

@import "tailwindcss/components";

@import "tailwindcss/utilities";

h1{
@apply text-2xl font-black leading-relaxed
}
h2{
@apply text-xl font-bold leading-relaxed
}

h3{
@apply text-lg font-medium leading-relaxed
}

p{
@apply text-base font-normal leading-normal
}

.ProseMirror{
@apply bg-white appearance-none border-2 border-gray-200 rounded-t-none w-full py-2 mt-2 px-4 text-gray-700 leading-tight
}
.ProseMirror:focus{
@apply shadow-outline outline-none border-blue-300 z-10
}

.ProseMirror > ul{
@apply list-disc ml-5 mb-3
}

.ProseMirror > ol{
@apply list-decimal ml-5 mb-3
}
.menubar__button{
@apply py-1 pl-2 font-bold rounded inline-flex items-center mr-3 bg-white shadow
}
.menubar_button:hover{
@apply bg-gray-400
}
.menubar__button.is-active{
@apply py-1 pl-2 bg-blue-400 font-bold
}
.menubar{
@apply flex justify-start mt-3
}
5 changes: 0 additions & 5 deletions src/main/resources/css/app.sass

This file was deleted.

Loading

0 comments on commit 8fbf611

Please sign in to comment.