Compare commits

..

2 Commits

Author SHA1 Message Date
644e45434e project cleanup 2026-03-19 17:57:58 +00:00
e5a5911f86 added style sheet 2026-03-19 17:55:48 +00:00
5 changed files with 33 additions and 4 deletions

View File

@@ -6,7 +6,8 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node index.js",
"setup": "rm ./database.db; touch ./database.db; node setup.js"
"setup": "touch ./database.db; node setup.js",
"clean": "rm ./database.db"
},
"keywords": [],
"author": "",

View File

@@ -8,6 +8,7 @@
"name": "frontend",
"version": "0.0.0",
"dependencies": {
"picnic": "^7.1.0",
"vue": "^3.5.30",
"vue-cookies": "^1.8.6"
},
@@ -994,6 +995,18 @@
"dev": true,
"license": "MIT"
},
"node_modules/picnic": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/picnic/-/picnic-7.1.0.tgz",
"integrity": "sha512-OFoJClCDSaCnavs7QZPMIIjrodUO8m6V+GBNOWaIN4kk3IjzSAd2kp/RfkpZRwXK2u71q5mJ3UQaQjHJRr3dnw==",
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"funding": {
"url": "https://www.paypal.me/franciscopresencia/19"
}
},
"node_modules/picocolors": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",

View File

@@ -9,6 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
"picnic": "^7.1.0",
"vue": "^3.5.30",
"vue-cookies": "^1.8.6"
},

View File

@@ -1,5 +1,5 @@
import { createApp } from 'vue';
// import './style.css'
import './style.css';
import App from './App.vue';
import VueCookies from 'vue-cookies';

View File

@@ -1,4 +1,18 @@
:root {
@import "../node_modules/picnic/picnic.min.css";
body {
@media (min-width: 800px) {
margin: 0% 25%;
}
@media (max-width: 800px) {
margin: 0 5%;
}
}
/* :root {
--text: #6b6375;
--text-h: #08060d;
--bg: #fff;
@@ -293,4 +307,4 @@ code {
right: 0;
border-right-color: var(--border);
}
}
} */