feat(ui): Change desktop UI breakpoint from min 600px to min 750px width

This commit is contained in:
Sören Beye 2024-05-27 17:37:41 +02:00
parent 03ff2909a9
commit 97818acc18
6 changed files with 14 additions and 5 deletions

View File

@ -35,6 +35,15 @@ const App = (): React.ReactElement => {
},
transitions: {
duration: transitionDurations
},
breakpoints: {
values: {
xs: 0,
sm: 750,
md: 900,
lg: 1200,
xl: 1536,
},
}
});
},

View File

@ -67,7 +67,7 @@
color: #DF5618;
}
@media print, screen and (max-width: 600px) {
@media print, screen and (max-width: 750px) {
.metadata {
flex-direction:column;
margin-right: inherit;

View File

@ -8,7 +8,7 @@
}
@media print, screen and (max-width: 600px) {
@media print, screen and (max-width: 750px) {
.paperContainerPaper {
margin-top: 0;
margin-bottom: 0;

View File

@ -4,7 +4,7 @@
margin-right: auto;
text-align: justify
}
@media print, screen and (max-width: 600px) {
@media print, screen and (max-width: 750px) {
.reactMarkDown {
max-width: 90%
}

View File

@ -4,7 +4,7 @@
margin-right: auto;
text-align: justify
}
@media print, screen and (max-width: 600px) {
@media print, screen and (max-width: 750px) {
.reactMarkDown {
max-width: 90%
}

View File

@ -4,7 +4,7 @@
}
@media print, screen and (max-width: 600px) {
@media print, screen and (max-width: 750px) {
.logViewer {
height: calc(68vh - 56px)
}