[Frontend] Fixed Create menu in mobile

open #250
open #157
Fixed CSS selector that wasn't properly
targeting the Create menu in a mobile
context;
This commit is contained in:
Charles Hacskaylo
2015-11-09 17:14:59 -08:00
parent d8ced8f635
commit e1110a2bc4
3 changed files with 28 additions and 26 deletions

View File

@ -22,21 +22,19 @@
// Override the Create menu for mobile
@include phoneandtablet {
.menu-element {
.super-menu {
$d: 250px;
width: $d;
height: $d;
.super-menu {
$d: 250px;
width: $d;
height: $d;
.pane {
&.left {
border-right: none;
padding-right: 0;
width: 100%;
}
&.right {
display: none;
}
.pane {
&.left {
border-right: none;
padding-right: 0;
width: 100%;
}
&.right {
display: none;
}
}
}