Fix wrap for tags (#195)

This commit is contained in:
Steven Harris 2019-09-03 23:40:59 -05:00 committed by jc21
parent 288086c78d
commit a215958cec
3 changed files with 11 additions and 1 deletions

View File

@ -4,7 +4,7 @@
</div>
</td>
<td>
<div>
<div class="wrap">
<%
if (provider === 'letsencrypt') {
domain_names.map(function(host) {

View File

@ -27,3 +27,8 @@ a:hover {
.card-options .dropdown-menu a:not(.btn) {
margin-left: 0;
}
.wrap {
display: flex;
flex-wrap: wrap;
}

View File

@ -3,6 +3,11 @@ $yellow: #f1c40f;
$blue: #467fcf;
$pink: #f66d9b;
.tag {
margin-bottom: .5em;
margin-right: .5em;
}
.tag.hover-green:hover, .tag.hover-green:active, .tag.hover-green:focus {
background-color: #5eba00;
cursor: pointer;