42 lines
571 B
Plaintext
42 lines
571 B
Plaintext
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.control {
|
|
padding: 4px;
|
|
}
|
|
|
|
.value {
|
|
font-size: x-large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.content{
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.types {
|
|
padding: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.pagi{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.empty {
|
|
display: flex;
|
|
width: 100%;
|
|
flex: 1;
|
|
background-color: white;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |