Skip to content

Commit

Permalink
Cosmetic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rmiccoli committed Feb 16, 2022
1 parent d43606a commit 51c70c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,12 @@
value="${ client.tosUri }" /></a></li>
</c:if>
<c:if test="${ (not empty contacts) }">
<li><spring:message code="approve.contacts" />: <c:out
value="${ contacts }" /></li>
<li><spring:message code="approve.contacts" />: <c:forEach
var="contact" items="${ contacts }">
<ul>
<li><c:out value="${ contact }" /></li>
</ul>
</c:forEach></li>
</c:if>
</ul>
</div>
Expand Down
3 changes: 2 additions & 1 deletion iam-login-service/src/main/webapp/resources/iam/css/iam.css
Original file line number Diff line number Diff line change
Expand Up @@ -644,13 +644,14 @@ body.skin-blue {
}

.btn-deny:active,
.btn-deny:focus,
.btn-deny:hover {
background-color: #8b0000;
color: #fff;
}

.list {
width: 350px;
width: 250px;
margin: auto;
text-align: left;
}
Expand Down

0 comments on commit 51c70c6

Please sign in to comment.