Skip to content

Commit

Permalink
feat(styling): add custom footer font-size SASS variable (#519)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jul 9, 2020
1 parent b2a0823 commit bc56030
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/modules/angular-slickgrid/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,7 @@ $viewport-border-left: 0 none !default;

/* Custom Footer */
$footer-bg-color: transparent !default;
$footer-font-size: $font-size-base !default;
$footer-font-style: italic !default;
$footer-font-weight: normal !default;
$footer-height: 30px !default; // if you modify this height, you also have to modify the footerHeight in the customFooterOptions
Expand Down
1 change: 1 addition & 0 deletions src/app/modules/angular-slickgrid/styles/slick-footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
color: $footer-text-color;
padding: $footer-padding;
background-color: $footer-bg-color;
font-size: $footer-font-size;
font-style: $footer-font-style;
font-weight: $footer-font-weight;
height: $footer-height;
Expand Down

0 comments on commit bc56030

Please sign in to comment.