UI changes: fixing mobile view.

This commit is contained in:
Sam El-Husseini 2016-10-27 18:43:09 -07:00
parent 6fd18b4f4c
commit bbe93ae9a2
1 changed files with 22 additions and 3 deletions

View File

@ -32,9 +32,8 @@
&:extend(.yellow all);
}
/* This removes the margin between the blockly categories to form connected pills */
.blocklyTreeRow {
width: 230px;
border-radius:5px;
}
@ -53,7 +52,7 @@
}
.blocklyFlyoutBackground {
fill: #FDFDE2;
fill: @grey;
}
.blocklyToolboxDiv {
@ -61,12 +60,32 @@
padding:7px;
}
/* Mobile */
@media only screen and (max-width: @largestMobileScreen) {
.blocklyTreeLabel {
font-size: 0.5rem !important;
}
}
/* Tablet */
@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
}
/* Small Monitor */
@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) {
.blocklyTreeRow {
width: 230px;
}
}
/* Large Monitor */
@media only screen and (min-width: @largeMonitorBreakpoint) {
.blocklyTreeRow {
width: 230px;
}
}
/*******************************
Menu Bar