Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
arvid220u committed Jun 30, 2022
1 parent a255dc7 commit a67e68a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gui/src/renderer/components/Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function TabElem({
const [hovering, setHovering] = React.useState(false);
const closeButton = (
<div
className={`place-content-center grid ${
className={`grid place-content-center ${
hovering || selected ? "" : "invisible"
}`}
>
Expand All @@ -53,7 +53,7 @@ export function TabElem({

return (
<div
className={`px-2 flex flex-row content-center py-1 unselectable text-sm hover:cursor-pointer ${
className={`unselectable flex flex-row content-center px-2 py-1 text-sm hover:cursor-pointer ${
selected ? "text-black" : "text-asbrown-200"
}`}
onClick={onClick}
Expand Down Expand Up @@ -107,7 +107,7 @@ export function TabContainer(props: {
onMouseOut={() => setHovering(false)}
>
<div
className={`flex-1 mb-1 ${
className={`mb-1 flex-1 ${
props.hidden && !hovering ? "invisible" : ""
}`}
>
Expand Down

0 comments on commit a67e68a

Please sign in to comment.