aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.component.scss
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/app.component.scss')
-rw-r--r--client/src/app/app.component.scss15
1 files changed, 12 insertions, 3 deletions
diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss
index d502d63b5..24c4f66c7 100644
--- a/client/src/app/app.component.scss
+++ b/client/src/app/app.component.scss
@@ -31,11 +31,12 @@
31 display: flex; 31 display: flex;
32 32
33 .top-left-block { 33 .top-left-block {
34 width: $menu-width;
35 z-index: 1001; 34 z-index: 1001;
36 height: $header-height; 35 height: $header-height;
37 display: flex; 36 display: flex;
38 align-items: center; 37 align-items: center;
38 flex: 1;
39 min-width: 0;
39 40
40 .icon { 41 .icon {
41 @include icon(22px); 42 @include icon(22px);
@@ -47,13 +48,21 @@
47 } 48 }
48 49
49 #peertube-title { 50 #peertube-title {
51 @include disable-default-a-behaviour;
52 width: 100%;
50 font-size: 20px; 53 font-size: 20px;
51 font-weight: $font-bold; 54 font-weight: $font-bold;
52 color: inherit !important; 55 color: inherit !important;
53 display: flex; 56 display: flex;
54 align-items: center; 57 align-items: center;
58 overflow: hidden;
55 59
56 @include disable-default-a-behaviour; 60 .instance-name {
61 overflow: hidden;
62 text-overflow: ellipsis;
63 white-space: nowrap;
64 width: 100%;
65 }
57 66
58 .icon.icon-logo { 67 .icon.icon-logo {
59 display: inline-block; 68 display: inline-block;
@@ -76,8 +85,8 @@
76 height: $header-height; 85 height: $header-height;
77 display: flex; 86 display: flex;
78 align-items: center; 87 align-items: center;
79 flex-grow: 1;
80 justify-content: flex-end; 88 justify-content: flex-end;
89 white-space: nowrap;
81 } 90 }
82} 91}
83 92