69 lines
912 B
CSS
69 lines
912 B
CSS
.title {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.images-button-row {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.divider {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.search-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 0 5px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.search-string {
|
|
flex: 2;
|
|
padding: 5px;
|
|
}
|
|
|
|
.search-boolean {
|
|
flex: 1;
|
|
padding: 5px;
|
|
}
|
|
|
|
.header-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 100px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.mat-elevation-z8 {
|
|
box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.paginator-container {
|
|
display: flex;
|
|
justify-content: end;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.images-button-row {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
margin-top: 16px;
|
|
gap: 10px;
|
|
}
|
|
|
|
mat-spinner {
|
|
margin: 0 auto;
|
|
align-self: center;
|
|
}
|
|
|