diff --git a/app/assets/styles/priceCard.css b/app/assets/styles/priceCard.css
index 92ad006..47acd68 100755
--- a/app/assets/styles/priceCard.css
+++ b/app/assets/styles/priceCard.css
@@ -1,13 +1,14 @@
.PriceCard {
- --height: auto;
width: 100%;
display: grid;
- transition: var(--transition-default);
+ transition: 150ms;
grid-template-rows: auto 1fr auto;
- height: var(--height);
+ max-height: 400px;
+ opacity: 1;
&.deleting {
- height: 0;
+ max-height: 0;
+ opacity: 0;
}
&.folded {
diff --git a/app/components/Pp/PriceCard.vue b/app/components/Pp/PriceCard.vue
index 0aa0e99..2104633 100755
--- a/app/components/Pp/PriceCard.vue
+++ b/app/components/Pp/PriceCard.vue
@@ -1,13 +1,12 @@
diff --git a/app/pages/index.vue b/app/pages/index.vue
index 4530791..8c7f550 100755
--- a/app/pages/index.vue
+++ b/app/pages/index.vue
@@ -2,11 +2,12 @@
@@ -15,35 +16,47 @@
Hinzufügen
-
-
- Berechnen
-
diff --git a/shared/Card.ts b/shared/Card.ts
new file mode 100644
index 0000000..98b555a
--- /dev/null
+++ b/shared/Card.ts
@@ -0,0 +1,8 @@
+export type Card = {
+ uuid: string
+ name: string
+ price: number
+ roles: number
+ sheets: number
+ layers: number
+}
\ No newline at end of file