Skip to content

Commit

Permalink
Added playlist comp, and some style changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
RanBerkovich1 committed Mar 7, 2024
1 parent c0a2fb6 commit aefb43a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/_codux/boards/new-board.board.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ import { SideBar } from '../../components/side-bar/side-bar';
import NewBoard_board_module from './new-board.board.module.scss';
import { NewReleases } from '../../components/new-releases/new-releases';
import { Player } from '../../components/player/player';
import { CuratedPlaylist } from '../../components/curated-playlist/curated-playlist';

export default createBoard({
name: 'M App',
Board: () => (
<div className={NewBoard_board_module['app-wrapper']}>
<SideBar />
<div className={NewBoard_board_module.content}>
<CuratedPlaylist />
<div className={NewBoard_board_module.right}>
<NewReleases />
<Player />
Expand All @@ -20,7 +22,7 @@ export default createBoard({
isSnippet: false,
environmentProps: {
windowHeight: 907,
windowWidth: 1274,
windowWidth: 1228,
canvasHeight: 904,
windowBackgroundColor: '#ffffff',
canvasWidth: 1570,
Expand Down
2 changes: 1 addition & 1 deletion src/components/button-primary/button-primary.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
padding-bottom: 16px;
padding-left: 24px;
border-radius: 100px;
background-color: var(--white);
background-color: var(--primary-btn);
text-align: center;
justify-content: center;
color: var(--txt-btn);
Expand Down
2 changes: 1 addition & 1 deletion src/components/new-releases/new-releases.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
align-items: stretch;
justify-items: stretch;
width: 100%;
gap: 0px;
gap: 24px;
}
.top-txt {
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/components/side-bar/side-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const SideBar = ({ className }: SideBarProps) => {
return (
<div className={classNames(styles.root, className, styles['side-bar'])}>
<Navigation />
<ButtonPrimary text="Upgrade " />
<ButtonPrimary text="Turn it up!" />
</div>
);
};

0 comments on commit aefb43a

Please sign in to comment.