Jelajahi Sumber

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 tahun lalu
induk
melakukan
c8ceff11dd
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  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;
 }