From 5ded3ebef8c1a59c62fd2282d83b48def67a6b67 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 23 Apr 2019 23:25:36 +0100 Subject: [PATCH] Extract a stylesheet --- src/App.vue | 6 +----- src/css/app.css | 5 +++++ 2 files changed, 6 insertions(+), 5 deletions(-) create mode 100644 src/css/app.css diff --git a/src/App.vue b/src/App.vue index e0d345b..fbd0ba1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -8,8 +8,4 @@ - + diff --git a/src/css/app.css b/src/css/app.css new file mode 100644 index 0000000..7f39374 --- /dev/null +++ b/src/css/app.css @@ -0,0 +1,5 @@ +@tailwind base; + +@tailwind components; + +@tailwind utilities;