29 lines
419 B
SCSS
29 lines
419 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
margin-left: 5px;
|
|
padding: 5px;
|
|
color: var(--primary-text-color);
|
|
overflow: hidden;
|
|
column-gap: 5%;
|
|
}
|
|
|
|
div.title {
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
div.details {
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: wrap;
|
|
--mdc-icon-size: 16px;
|
|
|
|
// Details panel can shrink as well as grow.
|
|
min-height: 0px;
|
|
}
|