mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 20:01:28 +00:00
fix: tooltip styling (#6632)
This commit is contained in:
@@ -83,7 +83,6 @@ const StyledWrapper = styled.div`
|
||||
}
|
||||
|
||||
.tooltip-mod {
|
||||
font-size: 11px !important;
|
||||
max-width: 200px !important;
|
||||
}
|
||||
|
||||
|
||||
@@ -76,7 +76,6 @@ const Wrapper = styled.div`
|
||||
}
|
||||
|
||||
.tooltip-mod {
|
||||
font-size: 11px !important;
|
||||
max-width: 200px !important;
|
||||
}
|
||||
|
||||
|
||||
@@ -13,7 +13,6 @@ const StyledWrapper = styled.div`
|
||||
}
|
||||
|
||||
.tooltip-mod {
|
||||
font-size: ${(props) => props.theme.font.size.xs} !important;
|
||||
width: 150px !important;
|
||||
|
||||
& ul {
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -75,7 +75,6 @@ const Wrapper = styled.div`
|
||||
}
|
||||
|
||||
.tooltip-mod {
|
||||
font-size: 11px !important;
|
||||
max-width: 200px !important;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user