@nulllogic/scssleon 1.2.29 → 1.3.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/LICENSE +2 -2
- package/package.json +6 -5
- package/scss/themes/_default.scss +5 -2
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
(The MIT License)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2014 Vladimir Lukyanov <vladimir
|
|
3
|
+
Copyright (c) 2014 Vladimir Lukyanov <vladimir@lukyanov.net>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
6
|
this software and associated documentation files (the 'Software'), to deal in
|
|
@@ -17,4 +17,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
17
17
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
18
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
19
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nulllogic/scssleon",
|
|
3
3
|
"description": "Most advanced, simple and clean SCSS framework",
|
|
4
|
-
"version": "1.
|
|
5
|
-
"version_short": "1.
|
|
4
|
+
"version": "1.3.0",
|
|
5
|
+
"version_short": "1.3.0",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"css",
|
|
8
8
|
"sass",
|
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
"css-framework",
|
|
15
15
|
"framework",
|
|
16
16
|
"web",
|
|
17
|
-
"scssleon"
|
|
17
|
+
"scssleon",
|
|
18
|
+
"components"
|
|
18
19
|
],
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"sass": "^1.
|
|
21
|
+
"sass": "^1.97.3"
|
|
21
22
|
},
|
|
22
23
|
"homepage": "https://nulllogic.github.io/scssleon-docs",
|
|
23
24
|
"style": "dist/scssleon.css",
|
|
@@ -34,4 +35,4 @@
|
|
|
34
35
|
"publishConfig": {
|
|
35
36
|
"registry": "https://registry.npmjs.org"
|
|
36
37
|
}
|
|
37
|
-
}
|
|
38
|
+
}
|
|
@@ -249,7 +249,7 @@ $content-config: (
|
|
|
249
249
|
margin-bottom: 15px,
|
|
250
250
|
line-height: clamp(1.25em, 4vw, 1.5em),
|
|
251
251
|
//list-style-type: attr(type),
|
|
252
|
-
margin-
|
|
252
|
+
margin-inline-start: 1.5rem,
|
|
253
253
|
_subclasses : (
|
|
254
254
|
'& ol': (
|
|
255
255
|
//list-style-type: attr(type),
|
|
@@ -260,13 +260,16 @@ $content-config: (
|
|
|
260
260
|
),
|
|
261
261
|
ul: (
|
|
262
262
|
margin-bottom: 0.5rem,
|
|
263
|
-
margin-inline-start:
|
|
263
|
+
margin-inline-start: 1.25rem,
|
|
264
264
|
line-height: clamp(1.25em, 4vw, 1.5em),
|
|
265
265
|
list-style-type: inherit,
|
|
266
266
|
_subclasses : (
|
|
267
267
|
'& ul': (
|
|
268
268
|
margin-bottom: 0.5rem,
|
|
269
269
|
margin-inline-start: 1rem,
|
|
270
|
+
),
|
|
271
|
+
'& li': (
|
|
272
|
+
margin-bottom: 0.5rem
|
|
270
273
|
)
|
|
271
274
|
)
|
|
272
275
|
),
|