1234567891011121314151617181920212223242526272829303132333435 |
- @import "src/assets/styles";
- .grid-content {
- height: 38vh;
- display: flex;
- background: $bg-color;
- width: 100%;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- > div {
- width: 100%;
- }
- .grid-title {
- font-weight: bolder;
- font-size: 24px;
- box-sizing: border-box;
- padding: 10px;
- }
- .filters {
- box-sizing: border-box;
- padding: 0 10px;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .grid-chart {
- height: calc(100% - 100px);
- }
- }
|