Skip to content

Commit

Permalink
A4A: Fix table padding in the DataViews table (#94590)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagonoronha committed Sep 20, 2024
1 parent 2cf1c4b commit 38b40f4
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions client/a8c-for-agencies/sections/sites/sites-dashboard/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,33 @@
border-radius: 4px;
}

.dataviews__view-actions,
.dataviews-filters__container {
padding: 16px;

@media (min-width: $break-small) {
padding: 16px 64px;
}
}

.dataviews-view-table tr td:first-child,
.dataviews-view-table tr th:first-child {
padding-left: 16px;

@media (min-width: $break-small) {
padding-left: 64px;
}
}

.dataviews-view-table tr td:last-child,
.dataviews-view-table tr th:last-child {
padding-right: 16px;

@media (min-width: $break-small) {
padding-right: 64px;
}
}

@media (min-width: $break-large) {
background: inherit;

Expand Down

0 comments on commit 38b40f4

Please sign in to comment.