diff --git a/.drone.yml b/.drone.yml index 5bfda6d..0d11df0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,17 +3,17 @@ type: docker name: default steps: -- name: build_deploy - privileged: true - image: node:latest - volumes: - - name: bonfire - path: /bonfire:/bonfire - commands: - - npm install - - npm run build - - cp -r ./build/* /bonfire/ - - ls . - - ls / - - ls /bonfire/ - - cat /bonfire/index.html + - name: build_deploy + privileged: true + image: node:latest + volumes: + - name: bonfire + path: /bonfire:/bonfire + commands: + - npm install + - npm run build + - cp -r ./build/* /bonfire/ + - ls . + - ls / + - ls /bonfire/ + - cat /bonfire/index.html diff --git a/src/app.html b/src/app.html index 97088f9..f75cea1 100644 --- a/src/app.html +++ b/src/app.html @@ -1,5 +1,5 @@ - + diff --git a/src/routes/+layout.js b/src/routes/+layout.js index 176ae64..189f71e 100644 --- a/src/routes/+layout.js +++ b/src/routes/+layout.js @@ -1 +1 @@ -export const prerender = true +export const prerender = true; diff --git a/tailwind.config.ts b/tailwind.config.ts index 26310f0..4f18c86 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -7,23 +7,23 @@ export default { theme: { extend: {}, - colors:{ - foundation: '#282828', - primary: '#282828', - secondary: '#000000', - accent: '#ff0000', + colors: { + foundation: '#282828', + primary: '#282828', + secondary: '#000000', + accent: '#ff0000', - neutral: '#000000', + neutral: '#000000', - primary_text: '#fbf1c7', - muted_text: '#a89984', - accent_text: '#fb4934', + primary_text: '#fbf1c7', + muted_text: '#a89984', + accent_text: '#fb4934', - red: '#000000', - green: '#000000', - blue: '#000000', - yellow: '#000000' - } + red: '#000000', + green: '#000000', + blue: '#000000', + yellow: '#000000' + } }, plugins: [typography, containerQueries]