Skip to content

Commit 77d5fd4

Browse files
committed
fix empty state SVG size by adding explicit width/height
1 parent 8191880 commit 77d5fd4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ async function renderServers() {
10761076
const container = el.querySelector('.table-container');
10771077
container.innerHTML = html`
10781078
<div class="empty-state">
1079-
<div class="empty-state-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="2" width="20" height="8" rx="2"/><rect x="2" y="14" width="20" height="8" rx="2"/><circle cx="6" cy="6" r="1" fill="currentColor"/><circle cx="6" cy="18" r="1" fill="currentColor"/></svg></div>
1079+
<div class="empty-state-icon"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="2" y="2" width="20" height="8" rx="2"/><rect x="2" y="14" width="20" height="8" rx="2"/><circle cx="6" cy="6" r="1" fill="currentColor"/><circle cx="6" cy="18" r="1" fill="currentColor"/></svg></div>
10801080
<div class="empty-state-title">No servers yet</div>
10811081
<div class="empty-state-desc">Create your first server to get started</div>
10821082
<button class="btn btn-primary" id="servers-empty-create-btn">Create Server</button>

0 commit comments

Comments
 (0)