Skip to content

Commit

Permalink
Extend scrolling to firefox
Browse files Browse the repository at this point in the history
* Extend scrolling to firefox
* Decrease rows height
* Decrease image size
* Fit whole viewport
  • Loading branch information
minottic authored Nov 15, 2024
1 parent 5bfcd28 commit b0c4db3
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ table {
table-layout: fixed;
}

table th,
table td {
white-space: nowrap;
overflow: scroll;
}


.logbooks:hover {
background-color: var(--main-background)!important;
-webkit-transition: background-color 100ms linear, color 100ms linear;
Expand All @@ -18,11 +11,18 @@ table td {
}

.logbooks {
height: 65px;
height: 50px;
}

.scrollable-text {
white-space: nowrap;
overflow: scroll;
margin-right: 10px;
scrollbar-width: none;
}

.logbooks img {
max-height: 60px;
max-height: 45px;
object-fit: contain;
}

Expand All @@ -34,7 +34,7 @@ table td {
}

.scrollable-container {
max-height: 65px * 11;
max-height: calc(100vh - 250px);
width: 100%;
overflow: auto;
}

0 comments on commit b0c4db3

Please sign in to comment.