Skip to content

Commit a215958

Browse files
Steven-Harrisjc21
authored andcommitted
Fix wrap for tags (NginxProxyManager#195)
1 parent 288086c commit a215958

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

src/frontend/js/app/nginx/certificates/list/item.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
</div>
55
</td>
66
<td>
7-
<div>
7+
<div class="wrap">
88
<%
99
if (provider === 'letsencrypt') {
1010
domain_names.map(function(host) {

src/frontend/scss/custom.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@ a:hover {
2727
.card-options .dropdown-menu a:not(.btn) {
2828
margin-left: 0;
2929
}
30+
31+
.wrap {
32+
display: flex;
33+
flex-wrap: wrap;
34+
}

src/frontend/scss/tabler-extra.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ $yellow: #f1c40f;
33
$blue: #467fcf;
44
$pink: #f66d9b;
55

6+
.tag {
7+
margin-bottom: .5em;
8+
margin-right: .5em;
9+
}
10+
611
.tag.hover-green:hover, .tag.hover-green:active, .tag.hover-green:focus {
712
background-color: #5eba00;
813
cursor: pointer;

0 commit comments

Comments
 (0)