Fix:- Tags drop-down menu is getting overlapped by another elements. (#2296)

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

View File

@ -293,7 +293,7 @@ const TagsPage = () => {
{isLoading ? (
<Loader />
) : (
<div data-testid="tags-container">
<div className="full-height" data-testid="tags-container">
{currentCategory && (
<div
className="tw-flex tw-justify-between tw-items-center"
@ -336,9 +336,7 @@ const TagsPage = () => {
/>
</div>
<div className="tw-bg-white">
<table
className="tw-w-full tw-overflow-x-auto"
data-testid="table">
<table className="tw-table-responsive" data-testid="table">
<thead>
<tr className="tableHead-row">
<th

View File

@ -763,6 +763,10 @@ body .profiler-graph .recharts-active-dot circle {
overflow-y: hidden;
}
.full-height {
height: calc(100vh - 110px);
}
#left-panel {
grid-area: leftsidebar;
}