Change info box render size on large screens

This commit is contained in:
Radu Radu 2022-02-10 10:38:06 +01:00
parent 71ede02e1c
commit 83c0e59ebd
No known key found for this signature in database
GPG key ID: 23E89FACE47CC132

View file

@ -19,7 +19,7 @@ function renderClientList(data) {
})
// render client html content
let html = `<div class="col-sm-6" id="client_${obj.Client.id}">
let html = `<div class="col-sm-6 col-md-6 col-lg-4" id="client_${obj.Client.id}">
<div class="info-box">
<div class="overlay" id="paused_${obj.Client.id}"` + clientStatusHtml
+ `<i class="paused-client fas fa-3x fa-play" onclick="resumeClient('${obj.Client.id}')"></i>