Procházet zdrojové kódy

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 před 4 roky
rodič
revize
c8ceff11dd
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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;
 }