]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/include/_nav.scss
Redesign register steps
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _nav.scss
CommitLineData
384ba8b7
C
1@use '_variables' as *;
2@use '_mixins' as *;
3
4@mixin peertube-nav-tabs (
5 $border-width: 3px,
6 $border-type: solid,
7 $border-color: #EAEAEA,
8 $nav-link-height: 40px
9) {
10 border-bottom: $border-width $border-type $border-color;
11 margin: 20px 0 0 !important;
12
13 &.hide-nav {
14 display: none !important;
15 }
16
17 a.nav-link {
18 @include disable-default-a-behaviour;
19
20 margin-bottom: -$border-width;
21 height: $nav-link-height !important;
22 padding: 0 30px !important;
23 font-size: 15px;
24
25 border: $border-width $border-type transparent;
26
27 span {
28 border-bottom: 2px solid transparent;
29 }
30
31 &.active {
32 border-color: $border-color;
33 border-bottom-color: transparent;
34
35 span {
36 border-bottom-color: pvar(--mainColor);
37 }
38 }
39
40 &:hover:not(.active) {
41 border-color: transparent;
42 }
43 }
44}