mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-10 17:27:40 +08:00
33 lines
No EOL
623 B
SCSS
33 lines
No EOL
623 B
SCSS
|
|
@import 'variables';
|
|
@import 'mixins';
|
|
@import 'partials/button';
|
|
@import 'partials/popovermenu';
|
|
@import 'partials/tabs';
|
|
@import 'partials/pwgen';
|
|
@import 'vaults';
|
|
@import 'credentials';
|
|
@import 'menu';
|
|
@import 'share_credential';
|
|
|
|
#app-settings-content:not(.ng-hide) {
|
|
height: 60px;
|
|
display: inherit !important;
|
|
padding: 0;
|
|
transition: height 0.15s ease-out;
|
|
}
|
|
#app-settings-content.ng-hide{
|
|
display: inherit !important;
|
|
height: 0;
|
|
padding: 0;
|
|
transition: height 0.15s ease-in;
|
|
}
|
|
.ui-dialog{
|
|
z-index: 9999;
|
|
}
|
|
#notification{
|
|
.row{
|
|
margin-left: 0 !important;
|
|
margin-right: 0 !important;
|
|
}
|
|
} |