mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 22:17:49 +00:00
[Mobile] Adjusted
Adjusted the _layout.scss to have a function that makes something disappear on phone and tablet.
This commit is contained in:
parent
dfd08000f1
commit
30a4f15330
@ -813,16 +813,21 @@ mct-container {
|
||||
.mobile-menu-icon {
|
||||
display: none; } }
|
||||
|
||||
@media screen and (max-width: 514px) {
|
||||
@media screen and (max-width: 800px) {
|
||||
/* line 90, ../sass/mobile/_layout.scss */
|
||||
.exclude-mobile {
|
||||
display: none; } }
|
||||
|
||||
@media screen and (max-width: 514px) {
|
||||
/* line 97, ../sass/mobile/_layout.scss */
|
||||
.browse-manage {
|
||||
width: 46%; } }
|
||||
@media screen and (min-width: 515px) and (max-width: 800px) {
|
||||
/* line 90, ../sass/mobile/_layout.scss */
|
||||
/* line 97, ../sass/mobile/_layout.scss */
|
||||
.browse-manage {
|
||||
width: 28%; } }
|
||||
@media screen and (min-width: 801px) {
|
||||
/* line 90, ../sass/mobile/_layout.scss */
|
||||
/* line 97, ../sass/mobile/_layout.scss */
|
||||
.browse-manage {
|
||||
min-width: 150px;
|
||||
max-width: 800px;
|
||||
|
@ -87,6 +87,13 @@ $hideRatioTab: 1.38;
|
||||
}
|
||||
}
|
||||
|
||||
.exclude-mobile {
|
||||
@include phoneandtablet {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.browse-manage {
|
||||
@include phone {
|
||||
width: $leftPhone;
|
||||
|
Loading…
Reference in New Issue
Block a user