浏览代码

fix: spacing issue with nested lists in Experience widget

Original style wasn't intended for nested lists to be used within card text.

Fix #1979
George Cushen 4 年之前
父节点
当前提交
c8ceff11dd
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      wowchemy/assets/scss/wowchemy/_widgets.scss

+ 2 - 1
wowchemy/assets/scss/wowchemy/_widgets.scss

@@ -402,7 +402,8 @@ ul.ul-edu li .description p.institution {
   color: rgb(248, 248, 242) !important;
 }
 
-.card .card-text ul {
+// For a UL after P, remove the spacing between (P margin-bottom) without affecting any nested lists.
+.card .card-text p + ul {
   margin-top: -1rem;
   margin-bottom: 0rem;
 }