blob: f11552ef6d9c511388f106fc81a3aaf432cbb8d2 (
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
|
.title-menu-left {
height: calc(100vh - #{$header-height});
padding-right: 0;
.title-menu-left-block {
margin-left: -15px;
&.menu {
height: 100%;
}
}
#peertube-title {
background-color: #fff;
border-right: 1px solid $header-border-color;
font-size: 25px;
line-height: $header-height;
text-align: center;
margin-top: 0;
margin-bottom: 0;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
a {
color: inherit !important;
display: block;
background: url(/client/assets/logo.png) no-repeat;
background-size: contain;
width: 180px;
height: 22px;
margin: auto;
&:hover {
color: inherit !important;
text-decoration: none !important;
}
}
}
}
my-search {
// Fix col-md-* padding
padding: 0;
}
footer {
border-top: 1px solid $footer-border-color;
padding: 10px 0;
text-align: center;
font-size: 11px;
margin-top: 30px;
}
|