1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.css

28 lines
569 B
CSS
Raw Normal View History

2016-01-29 21:43:11 -05:00
.paperDialog {
margin: 0;
top: 0;
left: 0;
right: 0;
bottom: 0;
position: fixed;
max-width: none !important;
max-height: none !important;
display: flex;
align-items: center;
justify-content: center;
}
.paperDialog.scrollY {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
}
.paperDialog.hiddenScroll::-webkit-scrollbar {
display: none;
}
.paperDialog.hiddenScroll {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}