// Lightning Design System 2.30.4
// Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
// Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license

/**
 * @summary Hides an element only when printing.
 *
 * @selector .slds-no-print
 * @notes Use on each element that should be ommited from printing.
 * @modifier
 */
@media print {

  .slds-no-print {
    display: none;
  }
}
