/*
 * This file is imported into every component!
 *
 * Nothing in this file may output any CSS
 * without being explicitly called by outside code.
 */

@use 'sass:math';

@function pxToRem($px) {
    @return #{math.div($px, 16)}rem;
}
