Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed various bugs in activity creation #6208

Merged
merged 7 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed browser console log bugs
  • Loading branch information
lucasbordeau committed Jul 10, 2024
commit d509a80684037575ceb2d57c3319a1fbaef93218
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ const StyledTbody = styled.tbody<{
overflow: hidden;

&.first-columns-sticky {
td:nth-child(1) {
td:nth-of-type(1) {
position: sticky;
left: 0;
z-index: 5;
}
td:nth-child(2) {
td:nth-of-type(2) {
position: sticky;
left: 9px;
z-index: 5;
}
td:nth-child(3) {
td:nth-of-type(3) {
position: sticky;
left: 39px;
z-index: 5;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ const StyledTableHead = styled.thead<{
}

&.first-columns-sticky {
th:nth-child(1) {
th:nth-of-type(1) {
position: sticky;
left: 0;
z-index: 5;
}
th:nth-child(2) {
th:nth-of-type(2) {
position: sticky;
left: 9px;
z-index: 5;
}
th:nth-child(3) {
th:nth-of-type(3) {
position: sticky;
left: 39px;
z-index: 5;
Expand All @@ -55,9 +55,9 @@ const StyledTableHead = styled.thead<{
}

&.header-sticky.first-columns-sticky {
th:nth-child(1),
th:nth-child(2),
th:nth-child(3) {
th:nth-of-type(1),
th:nth-of-type(2),
th:nth-of-type(3) {
z-index: 10;
}
}
Expand Down