toggle-components-library 1.23.3 → 1.23.6
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/demo.html +4 -4
- package/dist/{ToggleComponentsLibrary.common.js → toggle-components-library.common.js} +1 -1
- package/dist/toggle-components-library.common.js.map +1 -0
- package/dist/{ToggleComponentsLibrary.css → toggle-components-library.css} +1 -1
- package/dist/{ToggleComponentsLibrary.umd.js → toggle-components-library.umd.js} +3 -3
- package/dist/{ToggleComponentsLibrary.umd.js.map → toggle-components-library.umd.js.map} +1 -1
- package/dist/{ToggleComponentsLibrary.umd.min.js → toggle-components-library.umd.min.js} +2 -2
- package/dist/toggle-components-library.umd.min.js.map +1 -0
- package/package.json +2 -2
- package/src/sass/includes/_as_navs.scss +5 -1
- package/dist/ToggleComponentsLibrary.common.js.map +0 -1
- package/dist/ToggleComponentsLibrary.umd.min.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "toggle-components-library",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "vue-cli-service serve",
|
|
7
|
-
"build": "vue-cli-service build --target lib --name
|
|
7
|
+
"build": "vue-cli-service build --target lib --name toggle-components-library src/index.js",
|
|
8
8
|
"lint": "vue-cli-service lint",
|
|
9
9
|
"storybook": "start-storybook -p 6006",
|
|
10
10
|
"build-storybook": "build-storybook",
|
|
@@ -178,9 +178,13 @@
|
|
|
178
178
|
list-style: none;
|
|
179
179
|
font-family: $toggle-font-family;
|
|
180
180
|
font-size: 1.1rem;
|
|
181
|
-
font-weight: bold;
|
|
181
|
+
font-weight: bold !important;
|
|
182
182
|
padding-bottom: 0.25rem;
|
|
183
183
|
|
|
184
|
+
a, span{
|
|
185
|
+
font-weight: bold !important;
|
|
186
|
+
}
|
|
187
|
+
|
|
184
188
|
&.active {
|
|
185
189
|
> a, > span {
|
|
186
190
|
background: #FFF;
|