Skip to content
Merged
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
Next Next commit
style: TT-318 Improve column visibility
  • Loading branch information
Edgar Guaman committed Aug 30, 2021
commit 73974ba15578924e6a7ac7bb8eca837089a8c9eb
38 changes: 38 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,41 @@ Overwritten calendar style
.cal-header .cal-cell {
border: 0.1px solid lighten($primary-text, 30%);
}

@media (max-width: 576px) {
div.dt-buttons {
text-align: start !important;
}
.dataTables_wrapper .dataTables_filter {
text-align: start !important;
margin-left: 40px;
}
div.dt-button-collection {
top: 50px !important;
margin-left: 50px !important;
overflow-y: scroll !important;
max-height: 300px !important;
}
}

@media (min-width: 576px) {
div.dt-button-collection {
position: fixed !important;
top: 330px !important;
left: 280px !important;
button.active:not(.disabled) {
background: $primary !important;
box-shadow: none !important;
}
}
}

/* div.dt-button-collection {
position: fixed !important;
top: 330px !important;
margin-left: 280px !important;
overflow-y: scroll !important;
max-height: 300px !important;
}
*/