// ============================================================================
// :: Changelog
// ============================================================================
/**
 * A component which contains the different types of logs listed.
 * Every log gets automatically borders on the top and the bottom. When listing
 * these beneath each other they create dubble borders. This component makes
 * sure the borders look visually fine.
 */

.bp-changelog {
  position: relative;
}

// ============================================================================
// :: Elements
// ============================================================================
.bp-changelog__item {
  /**
   * Because an item has a border (bp-log) and in order to avoid dubble borders
   * we need to move them 1px to the top
   */
  margin-top: -0.1rem;
}
