mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-24 14:08:45 +00:00
Fix:- Tags drop-down menu is getting overlapped by another elements. (#2296)
This commit is contained in:
parent
e6f1148920
commit
30fe9343b5
@ -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
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user