fixed issue-2044: Tags drop-down menu is getting overlapped by another elements. (#2265)

This commit is contained in:
Shailesh Parmar 2022-01-18 20:07:01 +05:30 committed by GitHub
parent 7720a821df
commit a41d9f6905
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ const SampleDataTable: FunctionComponent<Props> = ({ sampleData }: Props) => {
</button>
) : null}
<div className="tw-table-responsive" ref={tableRef}>
<div className="tw-table-responsive tw-overflow-x-auto" ref={tableRef}>
{sampleData?.rows?.length && sampleData?.columns?.length ? (
<table
className="tw-min-w-max tw-w-full tw-table-auto"

View File

@ -57,7 +57,7 @@
@apply tw-border;
}
.tw-table-responsive {
@apply tw-block tw-w-full tw-overflow-x-auto;
@apply tw-block tw-w-full;
}
.tw-table-responsive > .tw-table-bordered {
@apply tw-border-none;