mirror of
https://github.com/google/pebble.git
synced 2025-04-01 15:24:04 +00:00
34 lines
No EOL
518 B
SCSS
Executable file
34 lines
No EOL
518 B
SCSS
Executable file
/*
|
|
jQuery.mmenu footer addon CSS
|
|
*/
|
|
|
|
@import "../inc/variables";
|
|
|
|
|
|
.mm-footer
|
|
{
|
|
background: inherit;
|
|
border-top: 1px solid transparent;
|
|
text-align: center;
|
|
line-height: $mm_footerHeight - ( $mm_padding * 2 );
|
|
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: $mm_footerHeight;
|
|
padding: $mm_padding $mm_padding 0 ( $mm_padding * 2 );
|
|
position: absolute;
|
|
z-index: 2;
|
|
bottom: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.mm-menu.mm-hasfooter
|
|
{
|
|
> .mm-panel:after
|
|
{
|
|
height: $mm_footerHeight + $mm_btnSize;
|
|
}
|
|
}
|
|
|
|
|
|
@include mm_colors_footer; |