]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-edit/video-add.component.scss
Remove deprecated NgbTabsetModule module
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 $border-width: 3px;
5 $border-type: solid;
6 $border-color: #EAEAEA;
7
8 .margin-content {
9 padding-top: 50px;
10 }
11
12 .alert {
13 font-size: 15px;
14 }
15
16 ::ng-deep .video-add-nav {
17 border-bottom: $border-width $border-type $border-color;
18 margin: 50px 0 0 0 !important;
19
20 a.nav-link {
21 @include disable-default-a-behaviour;
22
23 margin-bottom: -$border-width;
24 height: 40px !important;
25 padding: 0 30px !important;
26 font-size: 15px;
27
28 &.active {
29 border: $border-width $border-type $border-color;
30 border-bottom: none;
31 background-color: var(--submenuColor) !important;
32
33 span {
34 border-bottom: 2px solid var(--mainColor);
35 font-weight: $font-bold;
36 }
37 }
38 }
39 }
40
41 ::ng-deep .upload-video-container {
42 border: $border-width $border-type $border-color;
43 border-top: none;
44
45 background-color: var(--submenuColor);
46 border-radius: 3px;
47 width: 100%;
48 min-height: 440px;
49 padding-bottom: 20px;
50 display: flex;
51 justify-content: center;
52 align-items: center;
53 }