Skip to content

Commit

Permalink
Merge pull request #7022 from coderNadir/fix/issue-#7018
Browse files Browse the repository at this point in the history
Search Job tab doesn't display the search result in small screens (14")
  • Loading branch information
evereq authored Oct 21, 2023
2 parents b97af89 + c200569 commit c702fdd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions apps/gauzy/src/app/pages/jobs/search/search/search.component.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import 'gauzy/_gauzy-table.scss';
@import 'gauzy/_gauzy-overrides';
@import 'gauzy/_gauzy-cards.scss';

:host {
.form-group {
nb-select,
Expand Down Expand Up @@ -140,3 +141,27 @@
@include input-appearance(2rem, var(--gauzy-card-4));
}
}

nb-tabset {
// browse tab
nb-tab:nth-child(2) {
& div:nth-child(1) {
padding-right: 0;
--scrollbar-width: 0;
}
}
// search tab
nb-tab:nth-child(3) {
overflow-y: scroll;

& div:nth-child(1) {
margin-right: 0 !important;
}

& div:nth-child(2) {
padding-right: 0;
--scrollbar-width: 0;
min-height: 80%;
}
}
}

0 comments on commit c702fdd

Please sign in to comment.