Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / styles / scss / lib / _dash-join.scss
blobfeda07a650e9d3edbf4db151d208d86621f21c98
1 /**
2  * Convert a list of arguments into a string seperated by dashes
3  * @param {String} $args - A list of arguments
4  * @returns {String} - The converted into a strings joined with dashes
5  */
6 @function dash-join($args...) {
7         $result: null;
8         $first-add: true;
9         $glue: '-';
11         @for $i from 1 through length($args) {
12                 $e: nth($args, $i);
14                 @if $e != null and $e != '' {
15                         $result: if($i == 1 or $first-add == true, #{$e}, #{$result}#{$glue}#{$e});
16                         $first-add: false;
17                 }
18         }
20         @return $result;