mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
11e59e1f7e
no issue - To simplify styling and give a better separation feeling from UI perspective
38 lines
624 B
CSS
38 lines
624 B
CSS
.fullscreen-modal-billing {
|
|
margin: 0;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.fullscreen-modal-billing .modal-content {
|
|
position: relative;
|
|
height: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.fullscreen-modal-billing .modal-body {
|
|
margin: 0;
|
|
}
|
|
|
|
.fullscreen-modal-billing .billing-frame {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
|
|
.gh-billing-close {
|
|
width: calc(50vw - 200px)
|
|
}
|
|
|
|
.gh-billing-close button {
|
|
stroke: var(--midgrey);
|
|
opacity: 0.6;
|
|
transition: all 0.2s ease-in-out;
|
|
top: 25px;
|
|
}
|