Skip to content

Commit

Permalink
Merge branch 'main' into button-margin
Browse files Browse the repository at this point in the history
  • Loading branch information
robertblincoe authored Jul 4, 2023
2 parents bfde86d + 2196712 commit 9e3fb45
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions gov_uk_dashboards/assets/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -8064,9 +8064,9 @@ mark.expenditure {

.grid-container-css {
display: grid;
grid-template-columns: repeat(2, minmax(250px, 1fr));
grid-template-columns: repeat(2, 1fr);
grid-auto-rows: 250px;
padding: 50px 300px;
padding: 50px 50px;
gap: 75px 100px;
align-items: stretch;
}
Expand Down
1 change: 0 additions & 1 deletion gov_uk_dashboards/components/plotly/html_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ def html_list(
classes.append("govuk-list--spaced")

if numbered_list:

classes.append("govuk-list--number")
return html.Ol(li_items, className=" ".join(classes))

Expand Down
1 change: 0 additions & 1 deletion gov_uk_dashboards/lib/dap/dap_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def deploy_main_branch_to_pydash_test_environment(
https://github.com/communitiesuk/plotly_dashboard_docs#dap-hosting-environment-pydash
"""
with tempfile.TemporaryDirectory() as temporary_cloning_directory:

pydash_repo = _clone_repo(
url=dap_repo,
into=temporary_cloning_directory,
Expand Down
1 change: 0 additions & 1 deletion gov_uk_dashboards/lib/http_headers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def setup_application_http_response_headers(dash_app: dash.Dash):

@server.after_request
def add_headers(response):

content_security_policy = (
"default-src 'self' 'unsafe-eval' 'unsafe-inline' data:"
)
Expand Down
4 changes: 2 additions & 2 deletions scss/dashboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1096,9 +1096,9 @@ mark.expenditure {

.grid-container-css{
display: grid;
grid-template-columns: repeat(2, minmax(250px, 1fr)); ;
grid-template-columns: repeat(2, 1fr); ;
grid-auto-rows: 250px;
padding: 50px 300px;
padding: 50px 50px;
gap: 75px 100px;
align-items: stretch;
}
Expand Down

0 comments on commit 9e3fb45

Please sign in to comment.