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
{{ message }}
This repository has been archived by the owner on Apr 4, 2019. It is now read-only.
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();
}
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: