Wednesday, July 15, 2026 4:10:04 AM
> project show esm_website_v1
The unexpected heart of the ESM ecosystem. What started as a simple Rails dashboard has evolved into the command center for thousands of gaming communities, proving that sometimes the best infrastructure projects are the ones you never planned to build.
Details
> mixin.scss
//
// Component:       Mixin
// Description:     Defines mixins which are used across all components
//
// ========================================================================

// SVG
// ========================================================================

/// Replace `$search` with `$replace` in `$string`
/// @author Hugo Giraudel
/// @param {String} $string - Initial string
/// @param {String} $search - Substring to replace
/// @param {String} $replace ('') - New value
/// @return {String} - Updated string
@function str-replace($string, $search, $replace: '') {
    $index: str-index($string, $search);

    @if $index {
        @return str-slice($string, 1, $index - 1) + $replace +
            str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
    }

    @return $string;
}

@mixin svg-fill($src, $color-default, $color-new) {
    $replace-src: str-replace($src, $color-default, $color-new) !default;
    $replace-src: str-replace($replace-src, '#', '%23');
    $replace-src: quote($replace-src);
    background-image: url($replace-src);
}
All opinions represented herein are my own
- © 2024 - 2026 itsthedevman
- build 43aa0d7