32 lines
405 B
Text
32 lines
405 B
Text
.component {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
ul {
|
|
flex-grow: 1;
|
|
overflow: auto;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.grid {
|
|
li {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
h2 {
|
|
flex-grow: 1;
|
|
margin: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
li:nth-child(odd) {
|
|
background-color: #666;
|
|
}
|
|
}
|
|
}
|