style: fix styling
This commit is contained in:
parent
3d77fa1751
commit
5732e18d48
4 changed files with 30 additions and 30 deletions
28
.drone.yml
28
.drone.yml
|
@ -3,17 +3,17 @@ type: docker
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build_deploy
|
- name: build_deploy
|
||||||
privileged: true
|
privileged: true
|
||||||
image: node:latest
|
image: node:latest
|
||||||
volumes:
|
volumes:
|
||||||
- name: bonfire
|
- name: bonfire
|
||||||
path: /bonfire:/bonfire
|
path: /bonfire:/bonfire
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
- cp -r ./build/* /bonfire/
|
- cp -r ./build/* /bonfire/
|
||||||
- ls .
|
- ls .
|
||||||
- ls /
|
- ls /
|
||||||
- ls /bonfire/
|
- ls /bonfire/
|
||||||
- cat /bonfire/index.html
|
- cat /bonfire/index.html
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en" >
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
export const prerender = true
|
export const prerender = true;
|
||||||
|
|
|
@ -7,23 +7,23 @@ export default {
|
||||||
|
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {},
|
||||||
colors:{
|
colors: {
|
||||||
foundation: '#282828',
|
foundation: '#282828',
|
||||||
primary: '#282828',
|
primary: '#282828',
|
||||||
secondary: '#000000',
|
secondary: '#000000',
|
||||||
accent: '#ff0000',
|
accent: '#ff0000',
|
||||||
|
|
||||||
neutral: '#000000',
|
neutral: '#000000',
|
||||||
|
|
||||||
primary_text: '#fbf1c7',
|
primary_text: '#fbf1c7',
|
||||||
muted_text: '#a89984',
|
muted_text: '#a89984',
|
||||||
accent_text: '#fb4934',
|
accent_text: '#fb4934',
|
||||||
|
|
||||||
red: '#000000',
|
red: '#000000',
|
||||||
green: '#000000',
|
green: '#000000',
|
||||||
blue: '#000000',
|
blue: '#000000',
|
||||||
yellow: '#000000'
|
yellow: '#000000'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
plugins: [typography, containerQueries]
|
plugins: [typography, containerQueries]
|
||||||
|
|
Loading…
Add table
Reference in a new issue