Skip to content

Could not resolve the variable within mixin #80

Description

@bazzle

I created a mixin with variables and @if like this;

@mixin grid($howmanycols: 2, $gap: 1.5rem){
  display:grid;
  grid-auto-rows:auto;
  grid-gap:$gap;
  @if $howmanycols == 2{
    grid-template-columns:1fr 1fr;
  } @else if $howmanycols == 3{
    grid-template-columns:1fr 1fr 1fr;
  } @else if $howmanycols == 4{
    grid-template-columns:1fr 1fr 1fr 1fr;
  }
}

.thing{
  @include grid(2, 1.5rem);
}

https://www.sassmeister.com/gist/0a2d33972534af2cddd8323cc19e543b

Getting this error;
Fatal error: postcss-advanced-variables: /Users/bazzle/Documents/become a freelancer/site-design/css/input/main.css:12:15: Could not resolve the variable "$howmanycols" within "if $howmanycols == 3"

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions