-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(fix) O3-2840: Download button and TableToolbarSearch component shoul…
…dn't overlap (#981) * (fix: O3-2840): download button and search icon overlap with the table body. * Table toolbar style overrides * Remove unused classname --------- Co-authored-by: Dennis Kigen <kigen.work@gmail.com>
- Loading branch information
1 parent
b3bbfb3
commit b5df690
Showing
3 changed files
with
41 additions
and
29 deletions.
There are no files selected for viewing
14 changes: 0 additions & 14 deletions
14
packages/esm-appointments-app/src/calendar/patient-list/calenar-patient-list.scss
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
packages/esm-appointments-app/src/calendar/patient-list/calendar-patient-list.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
@use '@carbon/styles/scss/type'; | ||
@use '@carbon/colors'; | ||
|
||
.container { | ||
margin: 1rem; | ||
} | ||
|
||
.header { | ||
margin-bottom: 1rem; | ||
& > h2 { | ||
@include type.type-style('heading-02'); | ||
color: colors.$gray-100; | ||
} | ||
} | ||
|
||
.tableContainer { | ||
:global(.cds--table-toolbar) { | ||
position: relative; | ||
height: 3rem; | ||
min-height: 0rem; | ||
overflow: visible; | ||
top: 0; | ||
} | ||
|
||
&:global(.cds--data-table-container) { | ||
padding-top: 0rem; | ||
} | ||
} |