-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sean Scully
authored and
Sean Scully
committed
Feb 19, 2024
1 parent
c067132
commit 9e1e3f5
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
packages/frontend-design-poc/src/components/ActionPanel/ActionPanel.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { useTranslation } from "react-i18next"; | ||
|
||
import styles from "./actionPanel.module.css"; | ||
|
||
interface ActionPanelProps { | ||
} | ||
|
||
export function ActionPanel() { | ||
const { t } = useTranslation(); | ||
return ( | ||
<nav className={styles.actionPanel}> | ||
|
||
</nav> | ||
); | ||
} |
12 changes: 12 additions & 0 deletions
12
packages/frontend-design-poc/src/components/ActionPanel/actionPanel.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.actionPanel { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding: 0.5em 1em; | ||
flex-shrink: 0; | ||
border-radius: 20px; | ||
border: 2px solid #00315D; | ||
background: #E6EFF8; | ||
box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.10); | ||
min-height: 50px; | ||
} |
1 change: 1 addition & 0 deletions
1
packages/frontend-design-poc/src/components/ActionPanel/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { ActionPanel } from './ActionPanel.tsx' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters