-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated due to a rebase from the main branch which changed how CSS components are loaded. The new way of loading individual components: https://github.com/alphagov/govuk_publishing_components/blob/main/docs/set-up-individual-component-css-loading.md PR that introduced the change: #1622
- Loading branch information
Showing
8 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
//= link_directory ../javascripts .js | ||
//= link_directory ../stylesheets .css | ||
|
||
//= link views/_completed_transaction.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@import "govuk_publishing_components/govuk_frontend_support"; | ||
@import "govuk_publishing_components/individual_component_support"; | ||
|
||
.promotion { | ||
background: govuk-colour("light-grey"); | ||
padding: govuk-spacing(3); | ||
} |
3 changes: 3 additions & 0 deletions
3
app/views/assisted_digital_feedback/_assistance_received.html.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
<% | ||
add_view_stylesheet("completed_transaction") | ||
%> | ||
<%= render partial: "shared/completed_transaction_feedback", locals: { survey: "assisted_digital_satisfaction_survey" } %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
<% | ||
add_view_stylesheet("completed_transaction") | ||
%> | ||
<% add_gem_component_stylesheet("step-by-step-nav") %> | ||
<% add_gem_component_stylesheet("related-navigation") %> | ||
<% add_gem_component_stylesheet("step-by-step-nav-header") %> | ||
<% add_gem_component_stylesheet("step-by-step-nav-related") %> | ||
<% add_gem_component_stylesheet("contextual-sidebar") %> | ||
|
||
<%= render partial: "shared/completed_transaction_feedback", locals: { survey: "standard_satisfaction_survey" } %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters