fix: tooltip styling (#6632)

This commit is contained in:
sanish chirayath
2026-01-02 20:53:47 +05:30
committed by GitHub
parent 15065eb2f1
commit 781def844d
6 changed files with 12 additions and 5 deletions

View File

@@ -83,7 +83,6 @@ const StyledWrapper = styled.div`
}
.tooltip-mod {
font-size: 11px !important;
max-width: 200px !important;
}

View File

@@ -76,7 +76,6 @@ const Wrapper = styled.div`
}
.tooltip-mod {
font-size: 11px !important;
max-width: 200px !important;
}

View File

@@ -13,7 +13,6 @@ const StyledWrapper = styled.div`
}
.tooltip-mod {
font-size: ${(props) => props.theme.font.size.xs} !important;
width: 150px !important;
& ul {

View File

@@ -2,7 +2,6 @@ import styled from 'styled-components';
const Wrapper = styled.div`
.tooltip-mod {
font-size: ${(props) => props.theme.font.size.xs} !important;
width: 150px !important;
}

View File

@@ -75,7 +75,6 @@ const Wrapper = styled.div`
}
.tooltip-mod {
font-size: 11px !important;
max-width: 200px !important;
}

View File

@@ -19,6 +19,18 @@ const GlobalStyle = createGlobalStyle`
color: ${(props) => props.theme.colors.text.muted};
}
.tooltip-mod {
background-color: ${(props) => props.theme.infoTip.bg} !important;
color: ${(props) => props.theme.text} !important;
border: 1px solid ${(props) => props.theme.infoTip.border} !important;
box-shadow: ${(props) => props.theme.infoTip.boxShadow} !important;
font-size: ${(props) => props.theme.font.size.xs} !important;
padding: 4px 8px !important;
border-radius: 4px !important;
opacity: 1 !important;
z-index: 9999 !important;
}
.btn {
text-align: center;
white-space: nowrap;