42 lines
661 B
SCSS
42 lines
661 B
SCSS
.ContactGreeting {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
|
|
.wrapper {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: var(--pattern-color);
|
|
width: 14.5rem;
|
|
padding: .75rem 1rem;
|
|
border-radius: 1.5rem;
|
|
color: #fff;
|
|
}
|
|
|
|
.title {
|
|
font-weight: 500;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.description {
|
|
font-size: .9375rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.sticker {
|
|
margin: 2rem 0 1rem;
|
|
height: 10rem;
|
|
width: 10rem;
|
|
cursor: pointer;
|
|
|
|
.thumbnail {
|
|
height: 10rem;
|
|
width: 10rem;
|
|
}
|
|
}
|
|
}
|