Files
float-fleet/components/Pages/Pricing/PricingPlanStyle2.module.css
T
DESKTOP-GBA0BK8\Admin 97cc85c49d first commit
2023-03-25 20:44:56 -04:00

34 lines
559 B
CSS

.priceList {
list-style-type: none;
padding: 0;
margin: 0;
}
.priceList li {
margin-bottom: 15px;
position: relative;
padding-left: 30px;
}
.priceList li:last-child {
margin-bottom: 0;
}
.priceList li i {
background-color: rgba(117, 127, 239, 0.1);
position: absolute;
top: 0px;
left: 0;
width: 22px;
height: 22px;
line-height: 22px;
border-radius: 100%;
text-align: center;
}
/* For RTL Style */
[dir="rtl"] .priceList li {
padding-left: 0;
padding-right: 30px;
}
[dir="rtl"] .priceList li i {
left: auto;
right: 0;
}