@altinn/altinn-components 0.21.2 → 0.21.3
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.
- package/README.md +7 -1
- package/dist/global.css +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,7 +61,13 @@ and import the css file in your application once, e.g. in your css:
|
|
|
61
61
|
import "@altinn/altinn-components/lib/css/global.css";
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
for correct
|
|
64
|
+
for correct and minimal collection of global resets and variables.
|
|
65
|
+
|
|
66
|
+
Ensure that you have the font faces for the Inter font family properly loaded:
|
|
67
|
+
|
|
68
|
+
```html
|
|
69
|
+
<link rel="stylesheet" href="https://altinncdn.no/fonts/inter/v4.1/inter.css" integrity="sha384-OcHzc/By/OPw9uJREawUCjP2inbOGKtKb4A/I2iXxmknUfog2H8Adx71tWVZRscD" crossorigin="anonymous">
|
|
70
|
+
```
|
|
65
71
|
|
|
66
72
|
## Documentation
|
|
67
73
|
|
package/dist/global.css
CHANGED