comprobantes.component.scss
1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.panel-informativo {
  background: #67615e;
  color: #FFF;
  min-height: 32px;
  .form-group {
      margin-bottom: 5px;
  }
  .form-control-xs {
      height: calc(1.6rem);
      padding: .25rem .5rem;
      font-size: .8rem;
      line-height: 1.3;
      border-radius: .2rem;
  }
  .label {
      font-size: .8em;
  }
  .valor {
      font-size: .8em;
  }
  .border{
      border-width: 4px 2px !important;
  }
  .nota-pedido {
      @media (max-width: 576px) {
          text-align: center;
      }
  }
}
.titulares>div{
    display: flex;
    line-height: 30px;
    h5{
        line-height: 30px;
    }
    button{
        margin: auto;
        margin-right: 0;
    }
    @media(max-width: 992px){
        border-top: none !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 2px solid #FFF !important;
        &:last-child{
            border-left: 2px solid #FFF !important;
        }
        &:first-child{
            border-top: 2px solid #FFF !important;
        }
    }
}