aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/video-add.component.scss
blob: 443361f502d6febced7c90ce3184487953bb62e6 (plain) (blame)
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
57
@import '_variables';
@import '_mixins';

$border-width: 3px;
$border-type: solid;
$border-color: #EAEAEA;

$background-color:  #F7F7F7;

/deep/ tabset.root-tabset.video-add-tabset {
  &.hide-nav .nav {
    display: none !important;
  }

  & > .nav {

    border-bottom: $border-width $border-type $border-color;
    margin: 0 !important;

    & > li {
      margin-bottom: -$border-width;
    }

    a.nav-link {
      @include disable-default-a-behaviour;

      color: #000;
      height: 40px !important;
      padding: 0 30px !important;
      font-size: 15px;

      &.active {
        border: $border-width $border-type $border-color;
        border-bottom: none;
        background-color: $background-color !important;

        span {
          border-bottom: 2px solid #F1680D;
          font-weight: $font-bold;
        }
      }
    }
  }

  .upload-video-container {
    border: $border-width $border-type $border-color;
    border-top: none;

    background-color: $background-color;
    border-radius: 3px;
    width: 100%;
    min-height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}