chore: small ui fixes

This commit is contained in:
Kacper Kula 2025-08-14 16:03:05 +01:00
parent ae6ef8869e
commit 4416495b79
2 changed files with 4 additions and 6 deletions

View file

@ -82,7 +82,7 @@ export class SQLSealChartsSettingTab extends PluginSettingTab {
const headerRow = thead.createEl('tr');
headerRow.createEl('th', { text: 'Name' });
headerRow.createEl('th', { text: 'Preview' });
headerRow.createEl('th', { text: 'Actions' });
headerRow.createEl('th', { text: '' });
// Table body
const tbody = table.createEl('tbody');

View file

@ -134,11 +134,13 @@
.sqlseal-config-actions {
white-space: nowrap;
display: flex;
justify-content: flex-end;
gap: 8px;
}
.sqlseal-action-button {
padding: 4px 12px;
margin-right: 8px;
border: none;
border-radius: var(--radius-s);
cursor: pointer;
@ -146,10 +148,6 @@
transition: background-color 0.2s ease;
}
.sqlseal-action-button:last-child {
margin-right: 0;
}
.sqlseal-empty-state {
text-align: center;
color: var(--text-muted);