@milestone-sys/web-design-system 3.6.6 → 3.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.
- package/design-system.css +1 -1
- package/main.css +1 -1
- package/package.json +2 -2
- package/scss/_variables.scss +20 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milestone-sys/web-design-system",
|
|
3
3
|
"description": "Milestone web design system",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.7.2",
|
|
5
5
|
"browserslist": "last 1 version, not dead, > 0.2%",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "webpack --config ./webpack.prod.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@babel/preset-env": "^7.11.5",
|
|
22
22
|
"@frctl/fractal": "^1.3.0",
|
|
23
23
|
"babel-loader": "^8.1.0",
|
|
24
|
-
"bootstrap": "^
|
|
24
|
+
"bootstrap": "^5.2.3",
|
|
25
25
|
"clean-webpack-plugin": "^3.0.0",
|
|
26
26
|
"copy-webpack-plugin": "^5.1.2",
|
|
27
27
|
"css-loader": "^3.6.0",
|
package/scss/_variables.scss
CHANGED
|
@@ -116,6 +116,7 @@ $zindex-modal-2: 10010;
|
|
|
116
116
|
/***************** BOOTSTRAP CONFIGURATION VARIABLES *****************/
|
|
117
117
|
$grid-gutter-width: 20px;
|
|
118
118
|
$spacers: (
|
|
119
|
+
0: 0,
|
|
119
120
|
1: 4px,
|
|
120
121
|
2: 8px,
|
|
121
122
|
3: 12px,
|
|
@@ -136,3 +137,22 @@ $spacers: (
|
|
|
136
137
|
$embed-responsive-aspect-ratios: ((16 9), (2 1));
|
|
137
138
|
$enable-responsive-font-sizes: true;
|
|
138
139
|
$rfs-factor: 4;
|
|
140
|
+
|
|
141
|
+
$aspect-ratios: (
|
|
142
|
+
'1x1': 100%,
|
|
143
|
+
'2x1': calc(1 / 2 * 100%),
|
|
144
|
+
'4x3': calc(3 / 4 * 100%),
|
|
145
|
+
'16x9': calc(9 / 16 * 100%),
|
|
146
|
+
'21x9': calc(9 / 21 * 100%)
|
|
147
|
+
);
|
|
148
|
+
|
|
149
|
+
// Typography
|
|
150
|
+
//
|
|
151
|
+
// Font, line-height, and color for body text, headings, and more.
|
|
152
|
+
|
|
153
|
+
// scss-docs-start font-variables
|
|
154
|
+
// stylelint-disable value-keyword-case
|
|
155
|
+
$font-family-sans-serif: 'Open Sans', sans-serif;
|
|
156
|
+
|
|
157
|
+
//Allow Nebgative margins
|
|
158
|
+
$enable-negative-margins: true;
|