You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems 'transparent' is either a reserved string or this is a bug. It works in other compilers. Compiler never makes it into @else if ($navbar-type == 'transparent')
Example code:
$navbar-type == 'transparent'
// Include modifer components as needed
@if $navbar-type == 'hamburger' {
@include hamburger();
}
@else if ($navbar-type == 'classic') {
@include classic();
}
@else if ($navbar-type == 'transparent') {
@include transparent();
}
@else if ($navbar-type == 'modern') {
@include modern();
}
It seems 'transparent' is either a reserved string or this is a bug. It works in other compilers. Compiler never makes it into @else if ($navbar-type == 'transparent')
Example code: