fix compact mode tooltip

This commit is contained in:
Calli
2023-07-03 22:44:07 +03:00
parent ed697022e3
commit 41177a615b
2 changed files with 1 additions and 2 deletions

View File

@@ -18,7 +18,6 @@ export const AccountCard = ({
sx={{
padding: 1,
borderBottom: compactMode ? "" : "solid 1px gray",
borderRight: compactMode ? "solid 1px gray" : "",
}}
>
<Typography style={{ fontSize: "0.8rem" }} paddingLeft={2}>

View File

@@ -5,7 +5,7 @@ import { useContext } from "react";
export const CompactModeButton = () => {
const { compactMode, toggleCompactMode } = useContext(SessionContext);
return (
<Tooltip title="Export your EVE PI list to transfer to another device or backup">
<Tooltip title="Toggle compact layout for widescreen">
<ToggleButton
value="check"
selected={compactMode}