"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7313/css/_functions.scss" (2 Jun 2023, 114 Bytes) of package /linux/misc/jitsi-meet-7313.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Sass/SCSS source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 /* Functions */
    2 
    3 /* Pixels to Ems function */
    4 @function em($value, $base: 16) {
    5     @return #{$value / $base}em;
    6 }