Merge pull request #5778 from bijin-bruno/fix/environment-names-visibility

fix: make environment name width flexible up to 35% and disable tooltip for short names
This commit is contained in:
Bijin A B
2025-10-14 11:31:29 +05:30
committed by GitHub
parent 6589dc51cd
commit 3837a7612c
4 changed files with 25 additions and 6 deletions

View File

@@ -45,8 +45,10 @@ const Wrapper = styled.div`
}
.tippy-box {
min-width: 11.875rem;
min-height: 15.0625rem;
width: ${(props) => props.width}px;
min-width: 12rem;
max-width: 35vw !important;
min-height: 15.5rem;
max-height: 75vh;
font-size: 0.8125rem;
position: relative;