0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Fixed price selector clipping bug in membership settings

This commit is contained in:
Sanne de Vries 2021-05-21 11:25:23 +02:00
parent a43cc4a051
commit 48d0f123bd

View file

@ -647,7 +647,7 @@ textarea {
border-right: none;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
padding-right: 0;
padding-right: 2px;
min-width: 0; /* Firefox fix */
}
@ -678,6 +678,12 @@ textarea {
color: var(--midlightgrey);
}
@media (max-width: 430px) {
.gh-input-append {
padding: 6px 8px;
}
}
.gh-expandable-content .gh-input-append {
border-color: var(--whitegrey-d1);
}