38 lines
669 B
CSS
38 lines
669 B
CSS
.email-header {
|
|
align-items: center;
|
|
display: flex;
|
|
height: 39px;
|
|
justify-content: flex-end;
|
|
margin-bottom: 32px;
|
|
padding: 0 32px;
|
|
width: 100%;
|
|
background: var(--light-cornflower-blue);
|
|
}
|
|
|
|
.email-header h1 {
|
|
font-size: 14px;
|
|
line-height: 140%;
|
|
color: var(--white);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.email-header div {
|
|
align-items: center;
|
|
background: var(--pale-gray);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
height: 27px;
|
|
justify-content: center;
|
|
margin-left: 10px;
|
|
width: 27px;
|
|
background: var(--gentle-blue);
|
|
}
|
|
|
|
.email-header div h1 {
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
line-height: 18px;
|
|
text-transform: uppercase;
|
|
}
|