]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/video-add.component.scss
Refactor torrent-or-magnet divider in video import
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / video-add.component.scss
CommitLineData
63c4db6d
C
1@import '_variables';
2@import '_mixins';
3
fbad87b0
C
4$border-width: 3px;
5$border-type: solid;
6$border-color: #EAEAEA;
27e1a06c 7
cd3d847d
C
8.margin-content {
9 padding-top: 50px;
10}
11
12.alert {
13 font-size: 15px;
14}
15
45c6bcf3
C
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;
cadb46d8 36 }
c182778e
C
37 }
38 }
45c6bcf3 39}
c182778e 40
45c6bcf3
C
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;
03652b31 53}