Skip to content

Commit

Permalink
fix(MdTable): fix height of fixed table for firefox (#1384)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuell1 authored and marcosmoura committed Jan 12, 2018
1 parent 7502554 commit e24f8dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MdTable/MdTable.vue
Expand Up @@ -180,7 +180,7 @@
},
contentStyles () {
if (this.mdFixedHeader) {
return `height: ${this.mdHeight}px`
return `height: ${this.mdHeight}px;max-height: ${this.mdHeight}px`
}
},
contentClasses () {
Expand Down

0 comments on commit e24f8dc

Please sign in to comment.