From fcf86e96da0dd08e83817f79909da50fa1e564ff Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 14 Jun 2017 10:55:59 -0400 Subject: [PATCH] body sizes are important --- src/popup/app/global/mainController.js | 2 +- src/popup/index.html | 2 +- src/popup/less/popup.less | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/popup/app/global/mainController.js b/src/popup/app/global/mainController.js index 14e706a6cc..1d444af52b 100644 --- a/src/popup/app/global/mainController.js +++ b/src/popup/app/global/mainController.js @@ -5,7 +5,7 @@ angular var self = this; self.currentYear = new Date().getFullYear(); self.animation = ''; - self.isFirefox = utilsService.isFirefox(); + self.lgBody = !utilsService.isFirefox(); $scope.$on('$stateChangeSuccess', function (event, toState, toParams, fromState, fromParams) { if (toParams.animation) { diff --git a/src/popup/index.html b/src/popup/index.html index ef67a217ee..5516181e15 100644 --- a/src/popup/index.html +++ b/src/popup/index.html @@ -90,7 +90,7 @@ - +
diff --git a/src/popup/less/popup.less b/src/popup/less/popup.less index 74e3798878..e428ddb79a 100644 --- a/src/popup/less/popup.less +++ b/src/popup/less/popup.less @@ -12,15 +12,15 @@ html { } body { - width: 320px; - height: 568px; + width: 320px !important; + height: 568px !important; background-color: @background-color; overflow: hidden; } body.lg { - width: 375px; - height: 667px; + width: 375px !important; + height: 667px !important; } .main-view {