style: don't use detail layout under 1600px width

feat/type-attributes
Tomáš Mládek 2023-07-06 17:53:00 +02:00
parent 88c4e6c67f
commit 7314d440f1
1 changed files with 21 additions and 19 deletions

View File

@ -571,28 +571,30 @@
}
}
.inspect.detail {
.main-content {
position: relative;
flex-direction: row;
justify-content: end;
}
@media screen and (min-width: 1600px) {
.inspect.detail {
.main-content {
position: relative;
flex-direction: row;
justify-content: end;
}
.blob-viewer {
width: 73%;
height: 100%;
position: absolute;
left: 1%;
top: 0;
}
.blob-viewer {
width: 73%;
height: 100%;
position: absolute;
left: 1%;
top: 0;
}
.detail-col {
width: 25%;
}
&.blob {
.detail-col {
flex-grow: 0;
width: 25%;
}
&.blob {
.detail-col {
flex-grow: 0;
}
}
}
}