@rypen-dev/shared-components 8.2.0 → 8.2.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rypen-dev/shared-components",
3
3
  "description": "Shared styles and Vuejs ui components for Rypen projects. Starting with version 8, this package is built with Vite 7 and Vue 3.",
4
- "version": "8.2.0",
4
+ "version": "8.2.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "scripts": {
@@ -520,6 +520,14 @@ label {
520
520
  border-radius: 0 $global-form-input-radius $global-form-input-radius 0;
521
521
  }
522
522
 
523
+ &.small {
524
+ .input-group-field {
525
+ height: 35px;
526
+ padding: 5px;
527
+ font-size: 0.875rem;
528
+ }
529
+ }
530
+
523
531
  &.tiny {
524
532
  .input-group-field {
525
533
  height: 30px;
@@ -1,9 +1,10 @@
1
1
  /// <reference path="../variables" />
2
2
  /// <reference path="../vendor/foundation-settings" />
3
3
 
4
- @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Ubuntu:300,400,500,700');
4
+ //@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Ubuntu:300,400,500,700');
5
+ @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
5
6
 
6
- // OpenSans: Light = 300, Regular = 400, Semi-Bold = 600, Bold = 700 (Extra-Bold = 800)
7
+ // OpenSans: Light = 300, Regular = 400, Semi-Bold = 600, Bold = 700, Extra-Bold = 800
7
8
  // Ubuntu: Light = 300, Regular = 400, Medium = 500, Bold = 700
8
9
 
9
10
  body {
package/scss/styles.scss CHANGED
@@ -48,6 +48,7 @@
48
48
  @include foundation-visibility-classes;
49
49
  //@include foundation-float-classes;
50
50
 
51
+ @import './partials/typography';
51
52
  @import './partials/layout';
52
53
  @import './partials/navigation';
53
54
  @import './partials/badges';
@@ -59,7 +60,6 @@
59
60
  @import './partials/pills';
60
61
  @import './partials/tables';
61
62
  @import './partials/tooltips';
62
- @import './partials/typography';
63
63
  @import './partials/content';
64
64
  @import './partials/specsheet';
65
65
  @import './partials/notifications';