56 lines
824 B
CSS
Executable File
56 lines
824 B
CSS
Executable File
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #b7e9c3;
|
|
border-radius: 7px;
|
|
padding: 6px 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #494747;
|
|
text-align: center;
|
|
}
|
|
|
|
.emails-container {
|
|
width: 100%;
|
|
height: 108px;
|
|
padding: 8px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
gap: 10px;
|
|
}
|
|
|
|
.emails-container.up-down {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.emails-container.right-left {
|
|
flex-direction: row;
|
|
height: fit-content;
|
|
}
|
|
|
|
.emails-container.up-down {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.email-item {
|
|
margin-top: 0;
|
|
opacity: 1;
|
|
will-change: margin-bottom, opacity;
|
|
}
|
|
|
|
.hidden {
|
|
transition: all 0.5s ease;
|
|
opacity: 0;
|
|
}
|
|
|
|
.up-down .hidden {
|
|
margin-bottom: -26px;
|
|
}
|