31 lines
528 B
CSS
31 lines
528 B
CSS
.List-container {
|
|
background-color: #345987;
|
|
height: 100%;
|
|
min-height: calc(100vh - 148px);
|
|
}
|
|
|
|
.List {
|
|
/* Prevents the list from auto-scrolling while cascading node
|
|
* updates on new block, which helps with performance. */
|
|
overflow-anchor: none;
|
|
}
|
|
|
|
.List-no-nodes {
|
|
font-size: 30px;
|
|
padding-top: 20vh;
|
|
text-align: center;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.List-padding {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.List--table {
|
|
width: 100%;
|
|
background-color: #345987;
|
|
border-spacing: 0;
|
|
font-family: 'Ubuntu', sans-serif;
|
|
}
|