mirror of
https://github.com/ngoduykhanh/wireguard-ui.git
synced 2025-04-19 19:59:13 +03:00
Change info box render size on large screens (#155)
This commit is contained in:
parent
ef552aaed4
commit
4be3a65691
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue