mobile-tab-menu-theme

@include mobile-tab-menu-theme(
	$theme,
	$style
);

Description

Control the colours and style of the mobile menu that displays fixed to the bottom of the screen when a user is logged in.

Parameters

$theme (shades | color)
The base color to be used as theme.
Default: primary

$style (default | bold | gradient)
The style to be used on the menu.
Default:
default`

Return

(CSS) Styles to apply to .mobile-tab-menu.

Examples

Use the secondary shade to theme the mobile tab menu

@include mobile-tab-menu-theme(secondary);

Use a custom color to theme the mobile tab menu and apply the bold style to make it stand out

@include mobile-tab-menu-theme(
  $theme: #db2abf,
  $style: 'bold'
);