Skip to content

Commit

Permalink
FIX: #203 Scrolling in table (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiRo1310 authored Nov 19, 2024
1 parent 7d48ca2 commit 1d2f8e6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion admin/build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1512,7 +1512,7 @@ object-assign
* LICENSE file in the root directory of this source tree.
*/
/**
* @mui/lab v5.0.0-alpha.170
* @mui/lab v5.0.0-alpha.173
*
* @license MIT
* This source code is licensed under the MIT license found in the
Expand Down
7 changes: 4 additions & 3 deletions admin/css/app-content.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
}

.app__box {
display: "flex";
flex-direction: "column";
height: calc(100vh - 112px);
height: calc(100vh - 112px);
display: flex;
flex-direction: column;

}
2 changes: 1 addition & 1 deletion admin/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ div.MuiTabPanel-root {
.TabPanel-Action > div.MuiTabPanel-root {
height: calc(100% - 30px) !important;
padding-left: 0 !important;
}
}

/* Für Webkit-Browser wie Chrome und Safari */
.MenuNavigation-Container::-webkit-scrollbar,
Expand Down
6 changes: 6 additions & 0 deletions admin/css/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ table input {
border: none !important;
}

table {
overflow-y: auto;
flex: 1;
}


tr[draggable="true"] {
cursor: grab;
padding-right: 10px !important;
Expand Down

0 comments on commit 1d2f8e6

Please sign in to comment.