-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert all app changes since v6 except two small fixes (#1958)
Revert all app changes since v6 (e5a1f80)
- Loading branch information
1 parent
b454cef
commit 1f8ebf2
Showing
29 changed files
with
5,727 additions
and
5,052 deletions.
There are no files selected for viewing
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
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,11 @@ | ||
/* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, you can obtain one at https://mozilla.org/MPL/2.0/. | ||
* | ||
* Copyright Oxide Computer Company | ||
*/ | ||
|
||
export function NoLicenseHere() { | ||
return null | ||
} |
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,46 @@ | ||
/* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, you can obtain one at https://mozilla.org/MPL/2.0/. | ||
* | ||
* Copyright Oxide Computer Company | ||
*/ | ||
|
||
// TODO: Figure out a better place to put this? | ||
|
||
export const LightTheme = () => ( | ||
<svg | ||
width="237" | ||
height="137" | ||
viewBox="0 0 237 137" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<rect width="237" height="137" rx="1" fill="#DBDBDC" /> | ||
<rect x="60" y="16" width="59" height="6" rx="1" fill="#141A1C" /> | ||
<rect opacity="0.6" x="60" y="37" width="161" height="12" rx="1" fill="#48D597" /> | ||
<rect x="108" y="77" width="113" height="12" rx="1" fill="#AEB0B2" /> | ||
<rect x="108" y="61" width="113" height="12" rx="1" fill="#AEB0B2" /> | ||
<rect x="108" y="93" width="113" height="12" rx="1" fill="#AEB0B2" /> | ||
<rect x="60" y="61" width="32" height="32" rx="1" fill="#AEB0B2" /> | ||
<line x1="45.5" y1="2.18557e-08" x2="45.5" y2="137" stroke="#AEB0B2" /> | ||
</svg> | ||
) | ||
|
||
export const DarkTheme = () => ( | ||
<svg | ||
width="237" | ||
height="137" | ||
viewBox="0 0 237 137" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<rect width="237" height="137" rx="1" fill="#080F11" /> | ||
<line x1="45.5" y1="-2.18557e-08" x2="45.5" y2="138" stroke="#1C2325" /> | ||
<rect x="60" y="16" width="59" height="6" rx="1" fill="#2E8160" /> | ||
<rect x="60" y="37" width="161" height="12" rx="1" fill="#102422" /> | ||
<rect x="108" y="77" width="113" height="12" rx="1" fill="#1C2325" /> | ||
<rect x="108" y="61" width="113" height="12" rx="1" fill="#1C2325" /> | ||
<rect x="108" y="93" width="113" height="12" rx="1" fill="#1C2325" /> | ||
</svg> | ||
) |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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,22 @@ | ||
/* | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, you can obtain one at https://mozilla.org/MPL/2.0/. | ||
* | ||
* Copyright Oxide Computer Company | ||
*/ | ||
import { AvatarStack } from './AvatarStack' | ||
|
||
const AVATAR_DATA = [ | ||
{ name: 'Haley Clark', round: true }, | ||
{ name: 'Cameron Howe', round: true }, | ||
{ name: 'Gordon Clark', round: true }, | ||
] | ||
|
||
export const Default = () => <AvatarStack data={AVATAR_DATA} /> | ||
|
||
export const Selected = () => ( | ||
<div className="is-selected -m-4 p-4 bg-accent-secondary"> | ||
<AvatarStack data={AVATAR_DATA} /> | ||
</div> | ||
) |
Oops, something went wrong.