Skip to content

Commit 104fb6f

Browse files
committed
CORE-981: Privacy policy styling
[CORE-981] Instead of just making the bullet list left-justified, I replaced the center class with a new flush-left class that removes the paragraph-indent that it would otherwise have. This styles the Privacy and Terms pages closer to what is on osweb.
1 parent f72ef1e commit 104fb6f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

app/assets/stylesheets/newflow.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,10 @@ input.has-error {
310310
margin: 0 auto;
311311
}
312312

313+
.flush-left p {
314+
padding-left: 0;
315+
}
316+
313317
.policy {
314318
max-width: 800px;
315319
margin: 20px auto;

app/views/terms/show.html.erb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<% @page_title = @contract.title %>
2-
<%= ox_card(classes: "center") do %>
1+
<%= ox_card(classes: "flush-left") do %>
32

43
<div class="policy">
54
<%= @contract.content.html_safe %>

0 commit comments

Comments
 (0)