add: bottom toolbar, remove button for cards

Implemented bottom toolbar for adding and calculating, added remove button for Price Cards
This commit is contained in:
Fiona Lena Urban 2025-02-17 20:38:18 +01:00
parent aa9c936f80
commit c99c243dfc
10 changed files with 144 additions and 15 deletions

View file

@ -39,6 +39,7 @@ body {
.content {
padding: 1rem;
min-height: 100dvh;
}
.pc-wrapper {
@ -49,4 +50,24 @@ body {
.flex-col {
display: flex;
flex-direction: column;
}
.text-white {
color: var(--color-white);
}
.bg-main {
background-color: var(--color-main);
}
.bg-main-hover:hover {
background-color: var(--color-main);
}
.bg-main-dark {
background-color: var(--color-main-dark);
}
.bg-main-dark-hover:hover {
background-color: var(--color-main-dark);
}