File tree Expand file tree Collapse file tree 8 files changed +30
-12
lines changed Expand file tree Collapse file tree 8 files changed +30
-12
lines changed Original file line number Diff line number Diff line change 1
- # Sing App Angular Dashboard - Ngx Admin Template (5.2.2 Full version) with Angular 8.0 Final Release support
1
+ # Sing App Angular Dashboard - Ngx Admin Template (5.2.3 Full version) with Angular 8.0 Final Release support
2
2
3
3
This project was generated with [ Angular CLI] ( https://github.com/angular/angular-cli ) version 8.0.3.
4
4
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 5.2.3]
4
+
5
+ ### Fixed
6
+
7
+ - Fixed 'Header' for mobile and tablets.
8
+
3
9
## [ 5.2.2]
4
10
5
11
### Updated
Original file line number Diff line number Diff line change 1
1
< app-sidebar id ="sidebar " role ="navigation " class ="sidebar "> </ app-sidebar >
2
- < app-navbar (toggleSidebarEvent) ="toggleSidebarListener($event) "
3
- (toggleChatEvent) ="toggleChatListener() " class ="page-controls navbar navbar-dashboard "> </ app-navbar >
2
+ < app-navbar
3
+ (toggleSidebarEvent) ="toggleSidebarListener($event) "
4
+ (toggleChatEvent) ="toggleChatListener() "
5
+ class ="page-controls navbar navbar-dashboard "
6
+ > </ app-navbar >
4
7
< app-chat-sidebar class ="chat-sidebar "> </ app-chat-sidebar >
5
8
< theme-helper > </ theme-helper >
6
9
< div class ="content-wrap " id ="content-wrap ">
Original file line number Diff line number Diff line change 10
10
</ a >
11
11
<!-- shown on xs & sm screen. collapses and expands navigation -->
12
12
< a (click) ="toggleSidebar('collapse') " class ="d-lg-none nav-link " href ="# " data-html ="true " title ="Show/hide<br>sidebar " data-placement ="bottom ">
13
- < span class ="rounded rounded-lg bg-gray text-white d-md-none "> < i class ="la la-bars la-lg "> </ i > </ span >
13
+ < span class ="rounded rounded-lg text-gray d-md-none "> < i class ="la la-bars la-lg "> </ i > </ span >
14
14
< i class ="ml-3 la la-bars la-lg d-none d-md-block d-lg-none "> </ i >
15
15
</ a >
16
16
</ li >
21
21
< li class ="nav-item ">
22
22
<!-- toggles chat -->
23
23
< a class ="nav-link " href ="# " (click) ="toggleChat() ">
24
- < span class ="rounded rounded-lg bg-gray text-white "> < i class ="la la-globe la-lg "> </ i > </ span >
24
+ < span class ="rounded rounded-lg text-gray "> < i class ="la la-globe la-lg "> </ i > </ span >
25
25
</ a >
26
26
</ li >
27
27
</ ul >
28
- < a class ="navbar-brand d-md-none " [routerLink] =" ['/app/dashboard'] ">
29
- < i class ="la la -circle la-sm text-gray mr-n-sm "> </ i >
30
- < i class ="la la -circle la-sm text-warning "> </ i >
28
+ < div class ="navbar-brand d-md-none navbar-m display-flex align-items-center justify-content-center " [routerLink] =" ['/app/dashboard'] ">
29
+ < i class ="fa fa -circle fa-xs text-primary mr-n-sm "> </ i >
30
+ < i class ="fa fa -circle fa-xs text-orange "> </ i >
31
31
32
32
{{config.name}}
33
33
34
- < i class ="la la -circle la-sm text-warning mr-n-sm "> </ i >
35
- < i class ="la la -circle la-sm text-gray "> </ i >
36
- </ a >
34
+ < i class ="fa fa -circle fa-xs text-orange mr-n-sm "> </ i >
35
+ < i class ="fa fa -circle fa-xs text-primary "> </ i >
36
+ </ div >
37
37
<!-- this part is hidden for xs screens -->
38
38
<!-- search form! link it to your search server -->
39
39
< form class ="navbar-form d-none d-md-block mr-auto " role ="search ">
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export class LoginService {
65
65
const token = res . token ;
66
66
this . receiveToken ( token ) ;
67
67
} , err => {
68
- this . loginError ( err . response . data ) ;
68
+ this . loginError ( 'Something was wrong. Try again' ) ;
69
69
} ) ;
70
70
71
71
} else {
Original file line number Diff line number Diff line change @@ -933,6 +933,10 @@ legend {
933
933
934
934
.navbar-nav > .nav-item > .nav-link {
935
935
padding : $nav-link-padding-y $nav-link-padding-x ;
936
+
937
+ @media (max-width : 768px ) {
938
+ padding : $nav-link-padding-y 0.8rem ;
939
+ }
936
940
}
937
941
938
942
.navbar-nav {
Original file line number Diff line number Diff line change 27
27
vertical-align : middle ;
28
28
}
29
29
30
+ .fa-xs {
31
+ font-size : 0.625em ;
32
+ }
33
+
30
34
.fa-sm {
31
35
font-size : $font-size-sm ;
32
36
}
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ $theme-colors: (
63
63
' success' : $teal ,
64
64
' info' : $purple ,
65
65
' warning' : $yellow ,
66
+ ' orange' : $orange ,
66
67
' danger' : $red ,
67
68
' dark' : $gray-800 ,
68
69
' inverse' : $gray-700 ,
You can’t perform that action at this time.
0 commit comments