| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @gray_text_1: rgba(0, 0, 0, 0.85);
- .dashboard-card-wrap {
- display: flex;
- flex-direction: column;
- width: 100%;
- height: 100%;
- background-color: #fff;
- padding: 15px;
- border-radius: 5px;
- }
- .dashboard-card-header {
- display: flex;
- flex-shrink: 0;
- flex-grow: 0;
- align-items: center;
- margin-bottom: 10px;
- color: @gray_text_1;
- }
- .dashboard-card-header .dashboard-card-header-left {
- flex: 1;
- }
- .dashboard-card-header .dashboard-card-header-right {
- flex-shrink: 0;
- flex-grow: 0;
- }
- .dashboard-card-body {
- flex: 1;
- display: flex;
- }
- .dashboard-fco-wrap {
- height: 100%;
- left: 0;
- right: 0;
- overflow: auto;
- position: absolute;
- }
|