Skip to content

Commit

Permalink
Merge branch 'main' into victor/25011-upload-profiles-with-secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
ghernandez345 committed Dec 26, 2024
2 parents 4e298ac + e94aa2d commit a33e03f
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
4 changes: 4 additions & 0 deletions frontend/components/StatusIndicatorWithIcon/_styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
.icon {
margin-right: $pad-xsmall;
}

span {
white-space: nowrap;
}
}

// overrides for different layout
Expand Down
16 changes: 10 additions & 6 deletions frontend/pages/ManageControlsPage/OSSettings/_styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,16 @@
}
}

.side-nav__card-container > .custom-settings {
max-width: none;
}
@media (max-width: 1120px) {
.side-nav__nav-list {
padding-right: 0;
.side-nav__card-container {
overflow-x: hidden;

> .custom-settings {
max-width: none;
}
@media (max-width: 1120px) {
.side-nav__nav-list {
padding-right: 0;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,13 @@
font-size: inherit;
color: inherit;
}

.data-table {
&__wrapper {
// Keeps table data within the table container at smaller screen sizes
overflow-x: auto;
// Prevent border from causing .side-nav__card-container horizontal scroll
box-sizing: border-box;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
.linkToFilteredHosts__header {
width: auto;
max-width: 120px;
padding-left: 0 !important; // Removes 24px of unnecessary table scroll
}

.linkToFilteredHosts__cell {
width: auto;
max-width: 120px;
padding-left: 0 !important; // Removes 24px of unnecessary table scroll
}
}

Expand Down

0 comments on commit a33e03f

Please sign in to comment.