(Navbar) Fixed: Style variant 2 doesn't scroll on Firefox, IE & Edge

(Chat Panel) Fixed: Doesn't scroll on Firefox, IE & Edge
Increased Fuse version
This commit is contained in:
Sercan Yemen 2018-07-12 15:48:55 +03:00
parent 251732f221
commit 4d4d52ba05
6 changed files with 10 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "fuse",
"version": "6.2.2",
"version": "6.2.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "fuse",
"version": "6.2.2",
"version": "6.2.3",
"license": "https://themeforest.net/licenses/terms/regular",
"scripts": {
"ng": "ng",

View File

@ -28,7 +28,7 @@
</div>
<div>
<div class="content">
<!-- Contacts -->
<div id="contacts-list" fusePerfectScrollbar [fusePerfectScrollbarOptions]="{suppressScrollX: true}">

View File

@ -34,6 +34,10 @@ chat-panel {
}
.content {
min-height: 0;
}
#contacts-list {
padding: 8px 0;
overflow: auto;

View File

@ -3,4 +3,5 @@ navbar {
flex-direction: column;
flex: 1 1 auto;
width: 100%;
height: 100%;
}

View File

@ -79,11 +79,13 @@ navbar {
align-items: center;
justify-content: space-between;
min-height: 64px;
max-height: 64px;
height: 64px;
padding: 12px 12px 12px 20px;
@include media-breakpoint('xs') {
min-height: 56px;
max-height: 56px;
height: 56px;
}