add: design, icons, calculation
Implemented new design for PriceCards, added some icons for visuals, added calculation per price card
This commit is contained in:
parent
878b7e06e8
commit
aa9c936f80
11 changed files with 180 additions and 26 deletions
app/assets/styles
20
app/assets/styles/button.css
Normal file
20
app/assets/styles/button.css
Normal file
|
@ -0,0 +1,20 @@
|
|||
.Button {
|
||||
all: unset;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
|
||||
&.cta {
|
||||
background: var(--color-main);
|
||||
color: var(--color-white);
|
||||
padding: .5rem 1.5rem;
|
||||
border-radius: var(--radius-default);
|
||||
box-shadow: var(--box-shadow-z2);
|
||||
transition: var(--transition-default);
|
||||
|
||||
&:hover {
|
||||
background: var(--color-main-dark);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue