mirror of
https://github.com/nextcloud/passman.git
synced 2025-02-25 16:04:19 +08:00
fixed mobile-style which overlapped half the screen
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
This commit is contained in:
parent
26ee2c5de4
commit
44dd3c8d54
2 changed files with 8 additions and 3 deletions
|
@ -70,7 +70,13 @@
|
|||
#app-content {
|
||||
|
||||
margin-left: 300px;
|
||||
width: calc(100vw - 300px);
|
||||
|
||||
@media only screen and (max-width: 769px) {
|
||||
width: 100vw;
|
||||
}
|
||||
@media only screen and (min-width: 770px) {
|
||||
width: calc(100vw - 300px);
|
||||
}
|
||||
|
||||
overflow-x: hidden;
|
||||
|
||||
|
|
|
@ -165,8 +165,7 @@ style('passman', 'app');
|
|||
<a ng-class="{selected: clickedNavigationItem=='strength_good'}" ng-click="filterCredentialBySpecial('strength_good')">{{ 'Good Strength' | translate }}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a ng-class="{selected: clickedNavigationItem=='expired'}" class="icon-expired svg" ng-click="filterCredentialBySpecial('expired')">{{ 'Expired' | translate
|
||||
}}</a>
|
||||
<a ng-class="{selected: clickedNavigationItem=='expired'}" class="icon-expired svg" ng-click="filterCredentialBySpecial('expired')">{{ 'Expired' | translate }}</a>
|
||||
</li>
|
||||
<li data-id="trashbin" class="nav-trashbin pinned first-pinned">
|
||||
<a ng-click="toggleDeleteTime()" ng-class="{'active': delete_time > 0}" class="icon-delete svg">
|
||||
|
|
Loading…
Reference in a new issue