VICE / Client / src / app / reservation / reservation.component.css
reservation.component.css
Raw
.grid-container {
    margin: 20px;
  }

  .dashboard-card {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    table-layout: none;
  }

  .dashboard-card-content {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
  }

  .vm {
    width: 100%;
    min-width: 400px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 8px;
    border-radius: 2px;
    /*max-width: 800px;*/
    /*align-content:center;*/
  }

  .Done {
    background-color: #56f000;
  }

  .In-Progress {
    background-color: #2dccff;
  }

  .Stopped {
    background-color: #ff3838;
  }

  .Queued {
    background-color: #fce83a;
  }