File "statuses.module.scss"

Full Path: /var/www/html/front_back/workspace/Gitep-front/src/shared/ui/styles/statuses.module.scss
File size: 645 bytes
MIME-type: text/plain
Charset: utf-8

.status {
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  padding: 0 8px 0 18px;
  border-radius: 4px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translate(0, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
  }
}

.draft {
  background-color: #eaecf0;

  &::before {
    background-color: #101828;
  }
}
.approve {
  color: #1677ff;
  background-color: #e6f4ff;

  &::before {
    background-color: #1677ff;
  }
}
.pay {
  color: #faad14;
  background-color: #fffbe6;

  &::before {
    background-color: #faad14;
  }
}