Skip to content

Commit

Permalink
Add case for persistent tiles
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinRiese committed Jan 31, 2024
1 parent 922a696 commit 709b9b6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions corehq/apps/cloudcare/templates/formplayer/case_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,12 @@ <h1 aria-label="<%- title %>" tabindex="0" class="page-title"><%- title %></h1>
background-color: transparent;
color: #685c53;
justify-items: left;
<% if (model.isMultiSelect) { %>
margin: 20px 30px 10px 10px;
<% } else { %>
<% if (model.prefix === "persistent") { %>
margin: 20px 20px 10px 20px;
<% } else if (model.isMultiSelect) { %>
margin: 10px 30px 0 10px;
<% } else { %>
margin: 10px 20px 0 20px;
<% } %>
}
</script>
Expand Down

0 comments on commit 709b9b6

Please sign in to comment.