mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 11:51:30 +00:00
fix: update secret var alert icon to use danger text color (#6562)
This commit is contained in:
@@ -5,6 +5,10 @@ const Wrapper = styled.div`
|
||||
font-size: ${(props) => props.theme.font.size.xs} !important;
|
||||
width: 150px !important;
|
||||
}
|
||||
|
||||
.tooltip-icon {
|
||||
color: ${(props) => props.theme.colors.text.danger};
|
||||
}
|
||||
`;
|
||||
|
||||
export default Wrapper;
|
||||
|
||||
@@ -9,7 +9,7 @@ const SensitiveFieldWarning = ({ fieldName, warningMessage }) => {
|
||||
return (
|
||||
<StyledWrapper>
|
||||
<span className="ml-2 flex items-center">
|
||||
<IconAlertTriangle id={tooltipId} className="text-amber-600 cursor-pointer" size={20} />
|
||||
<IconAlertTriangle id={tooltipId} className="tooltip-icon cursor-pointer" size={20} />
|
||||
<Tooltip
|
||||
anchorId={tooltipId}
|
||||
className="tooltip-mod max-w-lg"
|
||||
|
||||
Reference in New Issue
Block a user