Implemented bottom toolbar for adding and calculating, added remove button for Price Cards
67 lines
No EOL
1.3 KiB
CSS
67 lines
No EOL
1.3 KiB
CSS
.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);
|
|
}
|
|
|
|
& > .bg-blue {
|
|
background: var(--color-blue);
|
|
}
|
|
|
|
& > .bg-white {
|
|
background: var(--color-white);
|
|
}
|
|
|
|
& .wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
gap: 1rem;
|
|
justify-content: space-between;
|
|
|
|
& > * {
|
|
flex-basis: 30%;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
& > .info {
|
|
align-items: center;
|
|
|
|
& > .icon {
|
|
color: var(--color-blue-light);
|
|
font-size: 2rem;
|
|
padding: .2rem;
|
|
}
|
|
|
|
& > .price {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
& > .pro {
|
|
font-size: .8rem;
|
|
font-weight: bold;
|
|
color: var(--color-main-light);
|
|
}
|
|
}
|
|
}
|
|
} |