@use "./elevation" as el;

.mat-elevation-0 {
  box-shadow: none;
}

@for $var from 1 to 24 {
  .mat-elevation-#{$var} {
    @include el.elevation($var);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  }
}

:root {
  font-size: 16px;
}
