@dontdrinkandroot/ngx-material-extensions 0.7.0 → 0.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,9 @@ $ddr-light-theme: mat.define-theme((
10
10
  primary: $ddr-mat-primary,
11
11
  tertiary: $ddr-mat-tertiary,
12
12
  ),
13
+ typography: (
14
+ plain-family: 'Roboto Flex Variable'
15
+ )
13
16
  )) !default;
14
17
 
15
18
  $ddr-dark-theme: mat.define-theme((
@@ -127,5 +130,5 @@ html, body {
127
130
 
128
131
  body {
129
132
  margin: 0;
130
- font-family: Roboto, "Helvetica Neue", sans-serif;
133
+ font-family: 'Roboto Flex Variable', 'Helvetica Neue', sans-serif;
131
134
  }
package/assets/fonts.scss CHANGED
@@ -1,21 +1,16 @@
1
- @import "@fontsource/roboto/300.css";
2
- @import "@fontsource/roboto/400.css";
3
- @import "@fontsource/roboto/500.css";
4
- @import "@fontsource/roboto/700.css";
5
- @import "@fontsource/material-icons";
1
+ @import '@fontsource-variable/roboto-flex/full';
2
+ @import "@fontsource/material-symbols-rounded/400.css";
6
3
 
7
- .material-icons {
8
- font-family: 'Material Icons';
4
+ .material-symbols-rounded {
5
+ font-family: "Material Symbols Rounded";
9
6
  font-weight: normal;
10
7
  font-style: normal;
11
- font-size: 24px;
8
+ font-size: 24px; /* Preferred icon size */
9
+ display: inline-block;
12
10
  line-height: 1;
13
- letter-spacing: normal;
14
11
  text-transform: none;
15
- display: inline-block;
16
- white-space: nowrap;
12
+ letter-spacing: normal;
17
13
  word-wrap: normal;
14
+ white-space: nowrap;
18
15
  direction: ltr;
19
- -moz-font-feature-settings: 'liga';
20
- -moz-osx-font-smoothing: grayscale;
21
16
  }