Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
.page-wrapper {
2
  &.full-page {
3
    .page-content {
4
      min-height: 100vh;
5
      max-width: 100%;
6
    }
7
  }
8
  @media (max-width: 991px) {
9
    margin-top: $navbar-height;
10
  }
11
 .page-content {
12
    padding: 2rem 0;
13
    @include make-container();
14
    @extend .container;
15
    min-height: calc(100vh - #{$navbar-height} - 50px);
16
    flex-grow: 1;
17
 
18
    .content-nav-wrapper {
19
      padding: 0;
20
      position: sticky;
21
      top: 80px;
22
      height: calc(100vh - 6rem);
23
      overflow-y: auto;
24
      border-left: 1px solid $border-color;
25
      display: none;
26
      @media(min-width: 1200px) {
27
        display: block;
28
      }
29
      .content-nav {
30
        padding: 0px 25px;
31
        .nav-item {
32
          .nav-link {
33
            padding: 0;
34
            height: 30px;
35
            white-space: nowrap;
36
            color: $text-muted;
37
            font-size: $font-size-base;
38
            display: flex;
39
            align-items: center;
40
          }
41
        }
42
      }
43
    }
44
  }
45
}