Skip to content

Commit

Permalink
Fix padding in datavies
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagonoronha committed Sep 20, 2024
1 parent 13b78f7 commit ebb2eec
Showing 1 changed file with 28 additions and 8 deletions.
36 changes: 28 additions & 8 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 Expand Up @@ -209,7 +236,7 @@
padding: 0;

.a4a-layout__viewport {
padding-inline: 24px;
padding-inline: 16px;
}

.a4a-layout__header-title {
Expand Down Expand Up @@ -454,13 +481,6 @@
}

&.sites-dashboard__layout {
.a4a-layout__viewport {
padding-inline: 24px;

@media (min-width: 720px) {
padding-inline: 48px;
}
}

.activity-card-list .activity-card .activity-card__time {
background: none;
Expand Down

0 comments on commit ebb2eec

Please sign in to comment.