Skip to content

Commit

Permalink
refactor: documents list visable column when screen resize (#1014)
Browse files Browse the repository at this point in the history
  • Loading branch information
MitanOmar authored Nov 29, 2024
1 parent d8b1039 commit 8d83e6e
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions app/styles/_responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@
container: table / inline-size;
}

@container alexandria (max-width: 1550px) {
@container alexandria (max-width: 1625px) {
.document-details {
width: 300px;
> div {
min-width: 375px;
}
}
}

@container alexandria (max-width: 1550px) {
.document-details {
> div {
min-width: 300px;
}
Expand All @@ -22,7 +28,7 @@
}
}

@container table (max-width: 850px) {
@container table (max-width: 750px) {
.side-nav > div:first-child {
font-size: 0;
}
Expand Down Expand Up @@ -59,7 +65,7 @@
}
}

@container table (max-width: 900px) {
@container table (max-width: 600px) {
.document-list-item-modifiedAt {
display: none;
}
Expand Down

0 comments on commit 8d83e6e

Please sign in to comment.