Skip to content
Snippets Groups Projects
maxConsumptionCard.scss 1.34 KiB
Newer Older
  • Learn to ignore specific revisions
  • @import 'src/styles/base/color';
    
    
    .max-consumption-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
      gap: 16px;
    
      color: $white;
    
      .fluid-navigation {
        display: flex;
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
        justify-content: space-around;
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
        max-width: 45.75rem;
    
      }
      .fluid {
        min-width: 120px;
        text-align: center;
    
      }
      .electricity {
        color: $elec-color;
      }
      .water {
        color: $water-color;
      }
      .gas {
        color: $gas-color;
      }
    
      .data-container {
        min-height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    
    
        .loaderContainer {
          height: 22rem;
          display: flex;
        }
    
        .maxDay-date {
          text-transform: capitalize;
    
        .maxDay-load span {
          font-size: 2rem;
          font-weight: 700;
        }
    
    
    .dataloadvisualizer-section {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
    
    .fluidMaxButton {
      border-radius: 4px;
      width: 80px;
      &:hover,
      &.active {
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
        background: $bg-active;
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
      }
    
      .MuiIconButton-label {
        display: flex;
        flex-direction: column;
        gap: 4px;
    
    
        .fluidLabel {
          color: $white;
        }
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
      }
    }