29 lines
411 B
SCSS
29 lines
411 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
|
|
button {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: start;
|
|
font-weight: 600;
|
|
|
|
&.enlarge {
|
|
height: 75px;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: start;
|
|
|
|
.latest_message {
|
|
margin-top: -5px;
|
|
font-size: 12px;
|
|
opacity: 50%;
|
|
}
|
|
}
|
|
}
|
|
}
|