Commit b902b245 authored by Redwan Jamous's avatar Redwan Jamous Committed by Rajab Natshah
Browse files

Issue #3305949 by RedwanJamous: Fix invalid margin-bottom value for node__meta class

parent 6bd01a64
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
}

.node__meta {
  margin-bottom: -0.3125;
  margin-bottom: -0.3125rem;
  font-size: 0.875rem;
}
.node__meta .field--name-field-user-picture img {
+1 −1
Original line number Diff line number Diff line
@@ -25,5 +25,5 @@
  background: none;
}
.sidebar nav ul.nav {
  margin: -1rem;
  margin: 0 -1rem;
}
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
// Node metadata styles.
.node__meta {
  @include font-size($font-size-sm);
  @include margin-bottom(-0.3125);
  @include margin-bottom(-0.3125rem);

  .field--name-field-user-picture {
    img {
+1 −1
Original line number Diff line number Diff line
@@ -34,6 +34,6 @@
    border-bottom: $border-width solid $border-color;
  }
  nav ul.nav {
    @include margin(0 -($spacer));
    @include margin(0 (-($spacer)));
  }
}
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@
}

.node__meta {
  margin-bottom: -0.3125;
  margin-bottom: -0.3125rem;
  font-size: 0.875rem;
}
.node__meta .field--name-field-user-picture img {
Loading