Skip to content

Commit

Permalink
fix(paginator): button density
Browse files Browse the repository at this point in the history
  • Loading branch information
LAMM26 committed Sep 3, 2024
1 parent 6e357c5 commit 60a4daa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/sdg/src/lib/core/theme/_all-theme.scss
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
@use '../style/overrides';
@use '../../breadcrumb/breadcrumb-theme' as breadcrumb;
@use '../../navigation/navigation-theme' as navigation;
@use '../../paginator/paginator-theme' as paginator;

@mixin all-component-themes($theme) {
@include breadcrumb.theme($theme);
@include navigation.theme($theme);
@include paginator.theme($theme);
@include overrides.override-igo2-lib-themes($theme);
@include overrides.override-material-themes($theme);
}

@mixin all-component-colors($theme) {
@include breadcrumb.color($theme);
@include navigation.color($theme);
@include paginator.color($theme);
@include overrides.override-igo2-lib-colors($theme);
@include overrides.override-material-colors($theme);
}

@mixin all-component-densities($theme) {
@include breadcrumb.density($theme);
@include navigation.density($theme);
@include paginator.density($theme);
@include overrides.override-igo2-lib-densities($theme);
@include overrides.override-material-densities($theme);
}
2 changes: 1 addition & 1 deletion packages/sdg/src/lib/paginator/_paginator-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
$theme: map.merge(
$theme,
(
density: -1
density: -2
)
);

Expand Down

0 comments on commit 60a4daa

Please sign in to comment.