12345678910111213141516171819202122232425262728293031323334 |
- .body {
- background-color: #0d1a2b;
- color: #fff;
- height: 100%;
- }
- .title {
- font-size: 20px;
- padding: 10px;
- }
- .listWrapper {
- height: 40vh;
- overflow-y: auto;
- }
- .list {
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
- }
- .listItem {
- width: 80%;
- text-align: center;
- border: 1px solid #fff;
- border-radius: 5px;
- margin: 5px 0px;
- padding: 5px 0px;
- }
- .chartWrapper{
- height: 40vh;
- }
|