@woosmap/ui 3.42.0 → 3.46.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "3.42.0",
3
+ "version": "3.46.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -1,4 +1,5 @@
1
1
  // Common styles - Don't change order
2
+ @import "./website/fonts.styl"
2
3
  @import "./commons/reset.styl"
3
4
 
4
5
  // Specicif style - Do not change order
@@ -0,0 +1 @@
1
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Roboto+Mono:wght@400;600&display=swap');
@@ -1,3 +1,15 @@
1
+ font()
2
+ font-family $fontFamily
3
+ font-size $fontSize
4
+ font-weight $fontWeight
5
+ color $secondary
6
+ line-height $fontSize + .4
7
+ -webkit-font-smoothing antialiased
8
+ -moz-osx-font-smoothing grayscale
9
+
10
+ inputFont()
11
+ font-family $fontFamily2
12
+
1
13
  f1()
2
14
  font-size $title
3
15
  font-weight 700
@@ -8,6 +8,11 @@ $topRainbowHeight = 3.8rem
8
8
  $gutter2c = 3rem
9
9
  $quoteIcon = 44rem
10
10
 
11
+ $fontFamily = 'Poppins', sans-serif
12
+ $fontFamily2 = 'Roboto Mono', monospace
13
+ $fontSize = 1.8rem
14
+ $lineHeight = $fontSize * 2 - .8
15
+ $fontWeight = 400
11
16
 
12
17
  $fontSizeSmall = $fontSize - .2
13
18
  $fontSizeMini = $fontSize - .4