/*
 * @Author: 焦质晔
 * @Date: 2020-02-28 22:13:07
 * @Last Modified by: 焦质晔
 * @Last Modified time: 2024-11-05 19:07:45
 */
@use './variable' as *;

.#{$prefix-table}--footer-wrapper {
  background-color: $v-table-footer-background-color;
  &::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    z-index: 3;
    border-top: 1px solid $v-table-border-color;
  }
  .#{$prefix-table}--footer {
    .gutter {
      background-color: $v-table-footer-background-color;
    }
    .cell {
      font-weight: 700;
    }
    .footer--row {
      &:last-of-type .footer--column {
        border-bottom: 0;
      }
    }
  }
}
