Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix(): remove css modules style imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthomp committed Jun 2, 2018
1 parent 0f819b9 commit 4abb1e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/Tabs/Tabs.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Tab from "./Tab.react";
import TabbedContainer from "./TabbedContainer.react";
import TabbedHeader from "./TabbedHeader.react";

import styles from "./Tabs.css";
import "./Tabs.css";

type Props = {|
+initialTab: string,
Expand All @@ -33,7 +33,7 @@ class Tabs extends React.PureComponent<Props, State> {
>
{children}
</TabbedHeader>
<div className={`${styles["margin-bottom-24"]}`} />
<div className={"margin-bottom-24"} />
<TabbedContainer selectedTitle={selectedTitle}>
{children}
</TabbedContainer>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Tooltip/Tooltip.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as React from "react";
import cn from "classnames";
import { Manager, Placement, Reference, Popper } from "react-popper";
import type { PopperChildrenProps, ReferenceChildrenProps } from "react-popper";
import styles from "./Tooltip.css";
import "./Tooltip.css";

type Props = {|
/**
Expand Down Expand Up @@ -58,8 +58,8 @@ class Tooltip extends React.Component<Props, State> {
const arrowClasses = cn(
"arrow",
placement === "top" || placement === "bottom"
? styles["tbr-arrow-vertical"]
: styles["tbr-arrow-horizontal"]
? "tbr-arrow-vertical"
: "tbr-arrow-horizontal"
);

return (
Expand Down

0 comments on commit 4abb1e1

Please sign in to comment.