Fixed some dark-mode styles

This commit is contained in:
Chris Kankiewicz
2019-12-15 00:08:59 -07:00
parent 9fe558dc56
commit 6ae4cec19a
3 changed files with 26 additions and 2 deletions

View File

@@ -2767,6 +2767,12 @@
"type": "1.2.0"
}
},
"de-indent": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
"integrity": "sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0=",
"dev": true
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
@@ -9269,6 +9275,16 @@
"loader-utils": "1.2.3"
}
},
"vue-template-compiler": {
"version": "2.6.11",
"resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.6.11.tgz",
"integrity": "sha512-KIq15bvQDrcCjpGjrAhx4mUlyyHfdmTaoNfeoATHLAiWB+MU3cx4lOzMwrnUh9cCxy0Lt1T11hAFY6TQgroUAA==",
"dev": true,
"requires": {
"de-indent": "1.0.2",
"he": "1.2.0"
}
},
"vue-template-es2015-compiler": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz",

View File

@@ -17,7 +17,8 @@
"resolve-url-loader": "^3.1.1",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"tailwindcss": "^1.1.4"
"tailwindcss": "^1.1.4",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {}
}

View File

@@ -14,10 +14,17 @@
}
footer {
@apply text-white;
.container {
@apply text-white;
@apply border-white;
}
a:hover {
@apply text-purple-600;
}
}
#scroll-to-top {
@apply bg-purple-700;
}
}