Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// npm package: sweetalert2
2
// github link: https://github.com/sweetalert2/sweetalert2
3
 
4
.swal2-popup {
5
  font-size: $font-size-base;
6
 
7
  .swal2-title {
8
    font-size: 25px;
9
    line-height: 1;
10
    font-weight: 500;
11
    color: $body-color;
12
    margin-bottom: 0;
13
  }
14
 
15
  .swal2-html-container {
16
    font-size: $font-size-base;
17
    color: $text-muted;
18
    font-weight: initial;
19
    margin-top: 11px;
20
    text-decoration: none;
21
  }
22
 
23
  .swal2-actions {
24
    button {
25
      @extend .btn;
26
      &.swal2-confirm {
27
        @extend .btn-primary;
28
      }
29
      &.swal2-cancel {
30
        @extend .btn-danger;
31
        @extend .border-danger;
32
      }
33
      svg {
34
        width: 16px;
35
        height: 16px;
36
      }
37
    }
38
  }
39
 
40
  .swal2-close {
41
    font-size: 22px;
42
    &:focus {
43
      box-shadow: none;
44
    }
45
  }
46
 
47
  .swal2-timer-progress-bar {
48
    background: $secondary;
49
  }
50
 
51
}