Skip to content

Commit

Permalink
Paranext -> Platform in a couple of files that were too small to make…
Browse files Browse the repository at this point in the history
… the change while renaming them
  • Loading branch information
tjcouch-sil committed Oct 16, 2023
1 parent 15c2e29 commit 0d7d346
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/renderer/components/docking/platform-panel.component.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
.paranext-panel {
.platform-panel {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}

.paranext-panel iframe {
.platform-panel iframe {
width: 100%;
height: 100%;
border: 0;
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/components/docking/platform-panel.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { ReactNode } from 'react';
import './platform-panel.component.css';

/**
* Used for possible styling on every panel in Paranext
* Used for possible styling on every panel in Platform
* @param children The children of the panel (usually supplied from an extension)
*/
export default function ParanextPanel({ children }: { children: ReactNode }) {
return <div className="paranext-panel">{children}</div>;
export default function PlatformPanel({ children }: { children: ReactNode }) {
return <div className="platform-panel">{children}</div>;
}

0 comments on commit 0d7d346

Please sign in to comment.