Skip to content

Commit

Permalink
fix: remove padding from table editor inputs
Browse files Browse the repository at this point in the history
Also, decrease line-height of header cells
  • Loading branch information
davidbgk committed Jul 12, 2024
1 parent 54266c7 commit f5fd0eb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion umap/static/umap/css/tableeditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
.umap-table-editor thead {
text-align: center;
height: 48px;
line-height: 48px;
line-height: 28px;
background-color: var(--color-darkGray);
}
.umap-table-editor thead tr {
Expand All @@ -38,6 +38,9 @@
padding: 10px;
vertical-align: top;
}
.umap-table-editor td:has(input) {
padding: 0;
}
.umap-table-editor tr:nth-child(even) {
background-color: var(--color-mediumGray);
}
Expand Down

0 comments on commit f5fd0eb

Please sign in to comment.