diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-04-21 11:06:33 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-04-26 21:23:19 +0200 |
commit | 383bfc8356d444cbed1dab7e5c1b3bb16becfdfd (patch) | |
tree | ae0541d99056d75b08f14e8e4ea73f67f173d942 /client/src/app/app.component.html | |
parent | 240c64c5f4277f0ce36c094f0663bd30d264ec40 (diff) | |
download | PeerTube-383bfc8356d444cbed1dab7e5c1b3bb16becfdfd.tar.gz PeerTube-383bfc8356d444cbed1dab7e5c1b3bb16becfdfd.tar.zst PeerTube-383bfc8356d444cbed1dab7e5c1b3bb16becfdfd.zip |
Client: responsive design
Diffstat (limited to 'client/src/app/app.component.html')
-rw-r--r-- | client/src/app/app.component.html | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/client/src/app/app.component.html b/client/src/app/app.component.html index 0c8e18a2f..f1eb6e021 100644 --- a/client/src/app/app.component.html +++ b/client/src/app/app.component.html | |||
@@ -1,31 +1,31 @@ | |||
1 | <div class="container"> | 1 | <div class="container-fluid"> |
2 | 2 | <div class="row"> | |
3 | <header class="row"> | 3 | <div class="col-md-2 col-sm-3 col-xs-3 title-menu-left"> |
4 | <div class="col-md-2"> | 4 | <h4 id="peertube-title" class="title-menu-left-block header"> |
5 | <h4 id="peertube-title"> | ||
6 | <a [routerLink]="['/videos/list']">PeerTube</a> | 5 | <a [routerLink]="['/videos/list']">PeerTube</a> |
7 | </h4> | 6 | </h4> |
8 | </div> | ||
9 | 7 | ||
10 | <div class="col-md-9"> | 8 | <div class="title-menu-left-block menu"> |
11 | <my-search></my-search> | 9 | <my-menu *ngIf="isInAdmin() === false"></my-menu> |
10 | <my-menu-admin *ngIf="isInAdmin() === true"></my-menu-admin> | ||
11 | </div> | ||
12 | </div> | 12 | </div> |
13 | </header> | ||
14 | 13 | ||
14 | <div class="col-md-10 col-sm-9 col-xs-9 main-col"> | ||
15 | <div class="header"> | ||
16 | <my-search></my-search> | ||
17 | </div> | ||
15 | 18 | ||
16 | <div class="row"> | 19 | <div class="main-row"> |
17 | <my-menu *ngIf="isInAdmin() === false"></my-menu> | 20 | <router-outlet></router-outlet> |
18 | <my-menu-admin *ngIf="isInAdmin() === true"></my-menu-admin> | 21 | </div> |
19 | |||
20 | <div class="col-md-9 col-sm-8 col-xs-8 router-outlet-container"> | ||
21 | <router-outlet></router-outlet> | ||
22 | </div> | 22 | </div> |
23 | </div> | 23 | </div> |
24 | 24 | ||
25 | <simple-notifications [options]="notificationOptions"></simple-notifications> | ||
26 | <my-confirm></my-confirm> | ||
27 | |||
28 | <footer> | 25 | <footer> |
29 | PeerTube, CopyLeft 2015-2017 | 26 | PeerTube, CopyLeft 2015-2017 |
30 | </footer> | 27 | </footer> |
31 | </div> | 28 | </div> |
29 | |||
30 | <my-confirm></my-confirm> | ||
31 | <simple-notifications [options]="notificationOptions"></simple-notifications> | ||