@shlinkio/shlink-frontend-kit 0.1.0 → 0.1.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/dist/base.scss +27 -0
- package/package.json +4 -3
package/dist/base.scss
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// Breakpoints
|
|
2
|
+
$xsMax: 575px;
|
|
3
|
+
$smMin: 576px;
|
|
4
|
+
$smMax: 767px;
|
|
5
|
+
$mdMin: 768px;
|
|
6
|
+
$mdMax: 991px;
|
|
7
|
+
$lgMin: 992px;
|
|
8
|
+
$lgMax: 1199px;
|
|
9
|
+
$xlgMin: 1200px;
|
|
10
|
+
$responsiveTableBreakpoint: $mdMax;
|
|
11
|
+
|
|
12
|
+
// Colors
|
|
13
|
+
$mainColor: #4696e5;
|
|
14
|
+
$lightColor: #f5f6fe;
|
|
15
|
+
$lightGrey: #eeeeee;
|
|
16
|
+
$dangerColor: #dc3545;
|
|
17
|
+
$mediumGrey: #dee2e6;
|
|
18
|
+
$textPlaceholder: #6c757d;
|
|
19
|
+
|
|
20
|
+
// Misc
|
|
21
|
+
$headerHeight: 56px;
|
|
22
|
+
$asideMenuWidth: 260px;
|
|
23
|
+
$footer-height: 2.3rem;
|
|
24
|
+
$footer-margin: .8rem;
|
|
25
|
+
|
|
26
|
+
// Bootstrap overwrites
|
|
27
|
+
$primary: $mainColor;
|
package/package.json
CHANGED
|
@@ -12,13 +12,14 @@
|
|
|
12
12
|
".": {
|
|
13
13
|
"import": "./dist/index.js",
|
|
14
14
|
"require": "./dist/index.umd.cjs"
|
|
15
|
-
}
|
|
15
|
+
},
|
|
16
|
+
"./base": "./dist/base.scss"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist"
|
|
19
20
|
],
|
|
20
21
|
"scripts": {
|
|
21
|
-
"build": "vite build",
|
|
22
|
+
"build": "vite build && cp ./src/base.scss ./dist/base.scss",
|
|
22
23
|
"test": "vitest run",
|
|
23
24
|
"test:ci": "npm run test -- --coverage",
|
|
24
25
|
"lint": "eslint --ext ts,tsx ./src ./test",
|
|
@@ -68,5 +69,5 @@
|
|
|
68
69
|
"not ie <= 11",
|
|
69
70
|
"not op_mini all"
|
|
70
71
|
],
|
|
71
|
-
"version": "0.1.
|
|
72
|
+
"version": "0.1.1"
|
|
72
73
|
}
|