Skip to content
Snippets Groups Projects
Commit a2be298a authored by Martin Leblanc's avatar Martin Leblanc Committed by Eric Bremner
Browse files

ISTWCMS-5631: removing the font size for lists as they get same from body,...

ISTWCMS-5631: removing the font size for lists as they get same from body, corrects challenge specificity when using list items in menus
parent b8ce4e91
No related branches found
No related tags found
1 merge request!16ISTWCMS-5631: presentation layer css for menu
...@@ -2,10 +2,8 @@ ...@@ -2,10 +2,8 @@
// List item styles. // List item styles.
:where(li) { :where(li) {
font-size: var(--font-size-0);
margin-bottom: var(--size-1); margin-bottom: var(--size-1);
padding-inline-start: var(--size-1); padding-inline-start: var(--size-1);
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Ordered list styles. // Ordered list styles.
:where(ol) { :where(ol) {
font-size: var(--font-size-0);
padding-inline-start: var(--size-4); padding-inline-start: var(--size-4);
margin: 0 0 var(--size-2); margin: 0 0 var(--size-2);
ol{ ol{
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Unordered list styles. // Unordered list styles.
:where(ul) { :where(ul) {
font-size: var(--font-size-0);
list-style-type: disc; list-style-type: disc;
margin: 0 0 var(--size-2); margin: 0 0 var(--size-2);
padding: 0 0 0 var(--size-4); // LTR padding: 0 0 0 var(--size-4); // LTR
...@@ -15,7 +13,6 @@ ...@@ -15,7 +13,6 @@
} }
} }
//padding-inline-start: var(--size-4);
} }
.disc { .disc {
list-style: disc; list-style: disc;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment