Explorar o código

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 %!s(int64=4) %!d(string=hai) anos
pai
achega
c8ceff11dd
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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;
 }