-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…t-new Created accordion component
- Loading branch information
Showing
7 changed files
with
34 additions
and
52 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 |
---|---|---|
@@ -1,14 +1,6 @@ | ||
import classes from './component.pod.module.css'; | ||
import { GalleryComponent } from '@/common/components/gallery/gallery-component'; | ||
import { mockWidgetCollection } from './component-gallery-data'; | ||
|
||
export const ComponentGalleryPod = () => { | ||
return ( | ||
<div className={classes.container}> | ||
<div className={classes.title}> | ||
<p>Components</p> | ||
</div> | ||
<GalleryComponent itemCollection={mockWidgetCollection} /> | ||
</div> | ||
); | ||
return <GalleryComponent itemCollection={mockWidgetCollection} />; | ||
}; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,6 @@ | ||
import { GalleryComponent } from '@/common/components/gallery/gallery-component'; | ||
import { mockContainerCollection } from './container-gallery-data'; | ||
import classes from './container.pod.module.css'; | ||
|
||
export const ContainerGalleryPod = () => { | ||
return ( | ||
<div className={classes.container}> | ||
<div className={classes.title}> | ||
<p>Devices</p> | ||
</div> | ||
<GalleryComponent itemCollection={mockContainerCollection} /> | ||
</div> | ||
); | ||
return <GalleryComponent itemCollection={mockContainerCollection} />; | ||
}; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,30 @@ | ||
.componentsGallery { | ||
grid-area: components-gallery; | ||
.leftTools { | ||
grid-area: leftTools; | ||
border-right: 1px solid black; | ||
display: inline-flex; | ||
flex-direction: column; | ||
} | ||
|
||
.propertiesOptions { | ||
grid-area: properties-options; | ||
.rightTools { | ||
grid-area: rightTools; | ||
border-left: 1px solid black; | ||
} | ||
|
||
.footer { | ||
grid-area: footer; | ||
} | ||
|
||
.container { | ||
overflow-y: auto; | ||
} | ||
.container[open] { | ||
flex: 1; | ||
border-bottom: 1px solid var(--primary-900); | ||
} | ||
.title { | ||
position: sticky; | ||
top: 0; | ||
background-color: var(--primary-200); | ||
padding: var(--space-xs) var(--space-md); | ||
border-bottom: 1px solid var(--primary-900); | ||
} |
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