mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
27 lines
468 B
CSS
27 lines
468 B
CSS
#unit-data-table {
|
|
display:flex;
|
|
flex-direction: column;
|
|
font-size:13px;
|
|
height: 250px;
|
|
width:fit-content;
|
|
}
|
|
|
|
#unit-data-table > div {
|
|
display:flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
#unit-data-table > div > div {
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width:100px;
|
|
}
|
|
|
|
#unit-data-table > div:first-of-type {
|
|
text-align: center;
|
|
}
|
|
|
|
#unit-data-table > div > div:nth-of-type( 4 ) {
|
|
text-align: center;
|
|
} |