34 lines
546 B
SCSS
34 lines
546 B
SCSS
:host {
|
|
padding: 16px;
|
|
h2 {
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-size: 17px;
|
|
line-height: 22px;
|
|
letter-spacing: -0.408px;
|
|
}
|
|
|
|
& .container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
|
|
p {
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 12px;
|
|
line-height: 16px;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.share {
|
|
width: 72px;
|
|
height: 48px;
|
|
background: var(--button-color);
|
|
padding: 8px 26px;
|
|
border: none;
|
|
}
|
|
}
|
|
}
|