(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", "name": "fuse",
"version": "6.2.2", "version": "6.2.3",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

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

View File

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

View File

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

View File

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

View File

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