style: fix styling
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
light7734 2025-04-25 14:18:13 +03:30
parent 3d77fa1751
commit 5732e18d48
Signed by: light7734
GPG key ID: B76EEFFAED52D359
4 changed files with 30 additions and 30 deletions

View file

@ -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

View file

@ -1,5 +1,5 @@
<!doctype html>
<html lang="en" >
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />

View file

@ -1 +1 @@
export const prerender = true
export const prerender = true;

View file

@ -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]