6 lines
129 B
SCSS
6 lines
129 B
SCSS
/* Path: Frontend/src/styles/tools/_functions.scss */
|
|
|
|
@function rem($pixels, $base: 16) {
|
|
@return ($pixels / $base) * 1rem;
|
|
}
|