@layer components {
// Place all the styles related to the Feedback controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
.feedbacks {
  .ticket {
    grid-template-columns: 3rem 12rem 16rem 1fr 1fr;
    grid-template-rows: 1fr 2rem;
    grid-template-areas: 
      "assigned-to id employee description date"
      "assigned-to status client description date";
    &__sla {
      display: none;
    }
    &__service {
      display: none;
    }
    &__date {
      display: block;
    }
  }
}
}
