Skip to content

Commit

Permalink
Merge pull request #350 from HarperDB/STUDIO-107
Browse files Browse the repository at this point in the history
update svg to work on dark theme
  • Loading branch information
foundling authored Nov 9, 2023
2 parents 37a8952 + 6aa6dfe commit 083272a
Show file tree
Hide file tree
Showing 6 changed files with 10,503 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/components/instances/list/NewInstanceCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function NewInstanceCard() {
<div className="my-4">
<i className="fa fa-2x fa-plus-circle new-instance-plus" />
</div>
<span>Register User-Installed Instance</span>
<span>Register Enterprise Instance</span>
</CardBody>
</Card>
</Col>
Expand Down
5 changes: 4 additions & 1 deletion src/components/instances/new/TypeAWS.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import React from 'react';
import { Row, Col, Card, CardBody, Button } from 'reactstrap';
import { useStoreState } from 'pullstate';
import AWSLogo from '../../shared/logos/AWSLogo';
import appState from '../../../functions/state/appState';

function TypeAWS({ setFormData }) {
const theme = useStoreState(appState, (s) => s.theme);
return (
<Card className="mb-3">
<CardBody className="instance-form-card-body">
<Row>
<Col xs="8" className="logo-header">
<AWSLogo />
<AWSLogo theme={theme} />
</Col>
<Col xs="4">
<Button
Expand Down
5 changes: 4 additions & 1 deletion src/components/instances/new/TypeVerizon.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
import React from 'react';
import { Row, Col, Card, CardBody, Button } from 'reactstrap';
import { useStoreState } from 'pullstate';
import VerizonLogo from '../../shared/logos/VerizonLogo';
import appState from '../../../functions/state/appState';

function TypeVerizon({ setFormData }) {
const theme = useStoreState(appState, (s) => s.theme);
return (
<Card className="mb-3">
<CardBody className="instance-form-card-body">
<Row>
<Col xs="8" className="logo-header">
<VerizonLogo />
<VerizonLogo theme={theme} />
</Col>
<Col xs="4">
<Button
Expand Down
17 changes: 15 additions & 2 deletions src/components/shared/logos/AWSLogo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions src/components/shared/logos/VerizonLogo.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 083272a

Please sign in to comment.