use `flex-container` class instead of `fxLayout` and set `style="flex: 1 1 0" to replicate `fxFlex`
24 lines
277 B
SCSS
24 lines
277 B
SCSS
.label {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
table {
|
|
tr {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.fa-download {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
.flex-container {
|
|
display: flex;
|
|
flex: 1 1 0;
|
|
gap: 20px;
|
|
flex-direction: row;
|
|
|
|
@media screen and (max-width: 1279px) {
|
|
flex-direction: column;
|
|
}
|
|
}
|