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

@ -1,6 +1,24 @@
.PriceCard {
width: 100%;
& > header {
color: white;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1.3em;
& > .Button {
scale: 0;
color: var(--color-white);
border: 2px solid var(--color-white);
}
& > .Button.deletable {
scale: 1;
}
}
& > .padding {
gap: 1rem;
padding: var(--padding-default);