23 lines
322 B
CSS
23 lines
322 B
CSS
table {
|
|
width: 100%;
|
|
}
|
|
|
|
.mat-row td {
|
|
padding: 15px;
|
|
}
|
|
|
|
.spanWithBreakWord {
|
|
display: inline-block;
|
|
min-width: 200px;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.content {
|
|
min-height: 90vh;
|
|
display: flex;
|
|
justify-content: left;
|
|
flex-direction: column;
|
|
align-items: initial;
|
|
padding-top: 25px;
|
|
}
|