1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-22 09:55:55 +02:00

body sizes are important

This commit is contained in:
Kyle Spearrin 2017-06-14 10:55:59 -04:00
parent 55e783fbcc
commit fcf86e96da
3 changed files with 6 additions and 6 deletions

View File

@ -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) {

View File

@ -90,7 +90,7 @@
<script src="app/lock/lockModule.js"></script>
<script src="app/lock/lockController.js"></script>
</head>
<body ng-controller="mainController as main" class="{{main.animation}}" ng-class="{lg: !main.isFirefox}">
<body ng-controller="mainController as main" class="{{main.animation}}" ng-class="{lg: main.lgBody}">
<div ui-view class="main-view"></div>
</body>
</html>

View File

@ -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 {