misc_pterodactyl-panel/resources/assets/styles/components/modal.css

25 lines
601 B
CSS
Raw Normal View History

2018-06-16 23:25:26 +00:00
.modal-mask {
@apply .fixed .pin .z-50 .overflow-auto .flex;
background: rgba(0, 0, 0, 0.7);
transition: opacity 250ms ease;
& > .modal-container {
2019-02-04 01:45:22 +00:00
@apply .relative .p-8 .bg-white .w-full .max-w-md .m-auto .flex-col .flex .rounded;
2018-06-16 23:25:26 +00:00
transition: all 250ms ease;
margin-top: 15%;
2018-06-16 23:50:18 +00:00
/**
* On tiny phone screens make sure there is a margin on the sides and also
* center the modal rather than putting it towards the top of the screen.
*/
@screen smx {
margin-top: auto;
width: 90%;
}
2018-06-16 23:25:26 +00:00
}
& > .modal-container.w-auto {
@apply .w-auto;
}
2018-06-16 23:25:26 +00:00
}