v1.1.2 - fixed LI indenting
This commit is contained in:
parent
5f0d351bc4
commit
475725b310
3 changed files with 14 additions and 7 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "visual-anatomy-3d",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "visual-anatomy-3d",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@glidejs/glide": "^3.4.1",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "visual-anatomy-3d",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"description": "Visual Anatomy 3D",
|
||||
"scripts": {
|
||||
"build-dev:webpack": "webpack",
|
||||
|
|
|
|||
|
|
@ -206,19 +206,26 @@ article#post .post__content > ul, article#post .post__content > ol {
|
|||
|
||||
article#post .post__content ul {
|
||||
list-style-type: disc;
|
||||
list-style-position: inside;
|
||||
/* list-style-position: inside; */
|
||||
}
|
||||
article#post .post__content ol {
|
||||
list-style-type: decimal;
|
||||
list-style-position: inside;
|
||||
/* list-style-position: inside; */
|
||||
}
|
||||
article#post .post__content ul ul, article#post .post__content ul {
|
||||
list-style-type: circle;
|
||||
list-style-position: inside;
|
||||
/* list-style-position: inside; */
|
||||
margin-left: 2rem;
|
||||
}
|
||||
article#post .post__content ol ol, ul ol {
|
||||
list-style-type: lower-latin;
|
||||
list-style-position: inside;
|
||||
/* list-style-position: inside; */
|
||||
margin-left: 2rem;
|
||||
}
|
||||
article#post .post__content li {
|
||||
margin-bottom: .35em;
|
||||
line-height: 1.4;
|
||||
}
|
||||
article#post .post__content li::marker {
|
||||
font-weight: 600;
|
||||
}
|
||||
Loading…
Reference in a new issue