Change info box render size on large screens (#155)

This commit is contained in:
Radu Radu 2022-02-12 19:52:50 +01:00 committed by GitHub
parent ef552aaed4
commit 4be3a65691
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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>