Skip to content

Commit

Permalink
Onboarding mobile improvements (#19997)
Browse files Browse the repository at this point in the history
fixes IPC-142
  • Loading branch information
dvdwinden authored Apr 8, 2024
1 parent 3d4c4d4 commit c1321f8
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions ghost/admin/app/styles/layouts/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -2801,6 +2801,17 @@ Onboarding checklist */
font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
.gh-onboarding-header h2 {
font-size: 2.4rem;
}

.gh-onboarding-header p {
font-size: 1.4rem;
margin: 0;
}
}

.gh-onboarding-items {
max-width: 540px;
width: 100%;
Expand Down Expand Up @@ -2901,6 +2912,25 @@ Onboarding checklist */
padding-right: 32px;
}

@media screen and (max-width: 480px) {
.gh-onboarding-item-title {
font-size: 1.5rem;
}

.gh-onboarding-item-description {
font-size: 1.4rem;
padding-right: 0;
}

.gh-onboarding-item-content {
padding-right: 16px;
}

.gh-onboarding-item--next {
padding: 24px 20px;
}
}

.gh-onboarding-item-action {
display: flex;
flex-direction: row;
Expand Down Expand Up @@ -2965,6 +2995,12 @@ Onboarding checklist */
font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
.gh-onboarding-help {
font-size: 1.4rem;
}
}

.gh-onboarding-help a {
color: #30cf43
}
Expand Down Expand Up @@ -3015,6 +3051,12 @@ Onboarding checklist */
transition: opacity .3s ease-in-out;
}

@media screen and (max-width: 480px) {
.gh-onboarding-explore-dashboard {
font-size: 1.5rem;
}
}

.gh-onboarding-explore-dashboard:hover {
opacity: 0.9;
}
Expand Down Expand Up @@ -3085,6 +3127,12 @@ Share publication modal */
transition: all .3s ease-in-out;
}

.gh-copy-publication-link span {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.gh-copy-publication-link:hover {
border: 1px solid var(--lightgrey);
}
Expand Down

0 comments on commit c1321f8

Please sign in to comment.