25 lines
311 B
SCSS
25 lines
311 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
span {
|
|
width: 33%;
|
|
min-width: 8rem;
|
|
margin-right: 0.5rem;
|
|
overflow-x: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
mat-slide-toggle {
|
|
flex: 0 1 auto;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
mat-slider {
|
|
flex: 1 1 auto;
|
|
}
|