-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move continue button to below the pricing summary #2101
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,3 +113,19 @@ div.initially-hidden { | |
.phone-number { | ||
white-space: nowrap; | ||
} | ||
|
||
@media (max-width: 640px) { | ||
#continue { | ||
position: absolute; | ||
top: auto; | ||
bottom: 0px; | ||
left: 15px; | ||
right: 15px; | ||
width: auto; | ||
} | ||
|
||
.govuk-grid-row { | ||
position: relative; | ||
padding-bottom: 75px; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These styles are fine, but they'll require far more testing effort than if you confined them to only the pages they're needed on - i.e. the licence type and licence length pages. To do this we can use the :has pseudo-class:
This will only target the |
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for
px
here