status-modal.component.scss 689 Bytes
@import "./src/themes/variables";


.modal-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  &__icon {
    color: $btn-color;
    span{
      font-size: 100px;
    }

  }
  &__title {
    font-size: 22px;
    font-weight: bold;
  }
  &__link {
    font-size: 14px;
    color: $btn-color;
    text-decoration: none;
    cursor: pointer;
  }
  &__btn {
    height: 48px;
    background: $btn-color;
    color: $white-color;
    border-radius: 8px;
    width: 100%;
    border: none;
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

  }
}