1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.example-spacer {
flex: 1 1 auto;
}
.mat-toolbar {
padding-top: 5px;
margin: 0 auto;
max-width: 1348px;
background-color: #4169E1;
color: #fff;
}
.main-body {
padding-top: 20px;
margin: 0 auto;
max-width: 1348px;
mat-form-field {
width: 100%;
}
}
.mat-toolbar {
padding-top: 5px;
background-color: #4169E1;
color: #fff;
}
.action {
display: flex;
align-items: center;
}
@media screen and (max-width: 600px) {
.action button {
margin-right: 5px;
}
.table-container {
overflow-x: auto;
}
}
td.mat-cell {
white-space: nowrap;
}
td.mat-cell.action-buttons {
display: flex;
justify-content: flex-end;
align-items: center;
}