Chore/BOOK-708 replace title component * chore(BOOK-708): replace title with typography * chore(BOOK-708): replace title with typography * chore(BOOK-708): remove Title from package.json Approved-by: Linus Flood Approved-by: Anton Gunnarsson
46 lines
691 B
CSS
46 lines
691 B
CSS
.container {
|
|
align-items: center;
|
|
display: grid;
|
|
border-radius: var(--Corner-radius-xl);
|
|
gap: var(--Space-x2);
|
|
min-height: 480px;
|
|
justify-content: space-between;
|
|
margin-right: var(--Space-x2);
|
|
padding: var(--Space-x4) var(--Space-x3);
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
.image {
|
|
object-fit: contain;
|
|
height: 160px;
|
|
width: auto;
|
|
justify-self: center;
|
|
}
|
|
|
|
.heading {
|
|
color: var(--Text-Heading);
|
|
}
|
|
|
|
.white {
|
|
background-color: var(--Main-Grey-White);
|
|
}
|
|
|
|
.buttonContainer {
|
|
display: flex;
|
|
gap: var(--Space-x1);
|
|
justify-content: center;
|
|
}
|
|
|
|
.link {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.icon {
|
|
align-self: center;
|
|
}
|
|
.bodyText {
|
|
text-align: center;
|
|
}
|