propapier/app/assets/styles/priceCard.css
webfussel 72aaf5174d INIT: initial commit
Added some initial files, components, functionality
2025-02-10 21:19:58 +01:00

16 lines
No EOL
343 B
CSS

.PriceCard {
padding: var(--padding-default);
display: flex;
flex-direction: column;
gap: 1rem;
width: 100%;
background: var(--color-blue);
border-bottom: 1px solid var(--color-white);
& > .wrapper {
display: flex;
width: 100%;
gap: 1rem;
justify-content: space-between;
}
}