/**
 * General styles for all applications.
 */

/**
 * In the case of: <button disabled="disabled"><i class="fa fa-something"></i><span>Something</span></button> even
 * if button is disabled events from its children can bubble up causing undesired behaviour like activating button.
 */
button[disabled] {
  span, i {
    pointer-events: none;
  }
}