| 123456789101112131415161718192021222324252627282930313233343536373839 |
- .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;
- }
- .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;
- }
|