Center text alignment in body styles and adjust product features list spacing: Updated CSS to enhance layout and visual consistency by centering text and modifying list item margins.
This commit is contained in:
@@ -453,7 +453,7 @@ body {
|
|||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-bottom: var(--spacing-lg);
|
margin-bottom: var(--spacing-lg);
|
||||||
text-align: left;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-features li {
|
.product-features li {
|
||||||
@@ -461,16 +461,13 @@ body {
|
|||||||
font-size: var(--font-size-sm);
|
font-size: var(--font-size-sm);
|
||||||
padding: var(--spacing-xs) 0;
|
padding: var(--spacing-xs) 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
position: relative;
|
|
||||||
padding-left: var(--spacing-lg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-features li::before {
|
.product-features li::before {
|
||||||
content: '•';
|
content: '•';
|
||||||
color: var(--primary-color);
|
color: var(--primary-color);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
position: absolute;
|
margin-right: var(--spacing-sm);
|
||||||
left: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.feature {
|
.feature {
|
||||||
|
|||||||
Reference in New Issue
Block a user