Compare commits
No commits in common. "9411f1ad729cb624588a1017e0f243bd9ea812b3" and "524feee54d248c4ac0cdef71899b60096195b809" have entirely different histories.
9411f1ad72
...
524feee54d
@ -4,7 +4,7 @@
|
||||
"description": "",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"build": "tsc && sass src/sass/dashboard-mod.scss static/css/dashboard-mod.css",
|
||||
"prestart": "npm run build",
|
||||
"start": "node .",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
@ -43,6 +43,7 @@
|
||||
"eslint-config-prettier": "^8.8.0",
|
||||
"prisma-dbml-generator": "^0.10.0",
|
||||
"prisma-docs-generator": "^0.7.0",
|
||||
"sass": "^1.62.1",
|
||||
"typescript": "^5.0.4"
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ model Item {
|
||||
category itemCategory? @relation(fields: [categoryId], references: [id])
|
||||
categoryId Int?
|
||||
|
||||
contents Item[] @relation("items") /// Item beinhaltet..
|
||||
items Item[] @relation("items") /// Item beinhaltet..
|
||||
baseItem Item[] @relation("items") /// Item zugehörig zu.
|
||||
|
||||
storageLocation StorageLocation? @relation(fields: [storageLocationId], references: [id])
|
||||
|
5
src/sass/dashboard-mod.scss
Normal file
5
src/sass/dashboard-mod.scss
Normal file
@ -0,0 +1,5 @@
|
||||
.magicalTriangle[aria-expanded=true] {
|
||||
transform: rotate(180deg);
|
||||
transition: transform 0.3s ease;
|
||||
|
||||
}
|
6
static/css/dashboard-mod.css
Normal file
6
static/css/dashboard-mod.css
Normal file
@ -0,0 +1,6 @@
|
||||
.magicalTriangle[aria-expanded=true] {
|
||||
transform: rotate(180deg);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=dashboard-mod.css.map */
|
1
static/css/dashboard-mod.css.map
Normal file
1
static/css/dashboard-mod.css.map
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../../src/sass/dashboard-mod.scss"],"names":[],"mappings":"AAAA;EACC;EACA","file":"dashboard-mod.css"}
|
Loading…
Reference in New Issue
Block a user