优化:调整引用文本下有序和无序列表的下边距,使其内容更为紧凑

This commit is contained in:
mjsoftware 2024-03-02 16:56:43 +08:00
parent 3be43dcd16
commit 69e51e8959

View File

@ -3473,15 +3473,46 @@ button.swiper-pagination-bullet {
& > li:last-child { & > li:last-child {
margin-bottom: 0 !important; margin-bottom: 0 !important;
& > p:last-child {
margin-bottom: 0 !important;
}
} }
} }
& > ol > li > p { ol,
margin-bottom: 0px !important; ul {
}
& > ul> li > p { li {
margin-bottom: 0px !important;
ol, ul {
&:not(:last-child) {
margin-bottom: 4px !important;
}
&:last-child {
margin-bottom: 0px !important;
}
}
//& ul {
// &:not(:last-child) {
// margin-bottom: 4px !important;
// }
//
// &:last-child {
// margin-bottom: 0px !important;
// }
//}
p:not(:last-child) {
margin-bottom: 4px !important;
}
p:last-child {
margin-bottom: 0px !important;
}
}
} }
} }