Skip to content

Commit

Permalink
Merge pull request #53 from 001elijah/dashboard
Browse files Browse the repository at this point in the history
fix modal
  • Loading branch information
001elijah authored Jun 28, 2023
2 parents 1a25cd2 + 72fc152 commit 6f6cc22
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 61 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
margin-right: 4px;
}
@include mobile {
width: 300px;
width: 280px;
}
}

Expand All @@ -47,8 +47,8 @@
margin-right: 4px;
margin-bottom: 4px;
background: inherit;
width: 32px;
height: 32px;
width: 28px;
height: 28px;

&.selected {
border-radius: 6px;
Expand Down
1 change: 0 additions & 1 deletion src/components/MainBoard/MainBoard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export const MainBoard = () => {

const board = useSelector(currentBoard);
if (!board) return null;
console.log(board);
return (
<>
<Wrapper imgurl={board.background} colorbg={curTheme}>
Expand Down
31 changes: 0 additions & 31 deletions src/components/ModalFilter/BackgroundBlock.jsx

This file was deleted.

24 changes: 0 additions & 24 deletions src/components/ModalFilter/ImgWrap.jsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/ModalFilter/Modal.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
}
}
.InputBlock {
margin-bottom: 12px;
margin-bottom: 8px;
}
.LabelField {
font-weight: 400;
Expand Down
1 change: 0 additions & 1 deletion src/components/ModalFilter/ModalFilter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import s from './Modal.module.scss';
import svg from '../../assets/icons/sprite.svg';
import PropTypes from 'prop-types';
import { LabelBlock } from './LabelBlock';
// import { BackgroundBlock } from './BackgroundBlock';
import { useEffect, useState } from 'react';
import { selectorTheme } from 'redux/Auth/authSelectors';
import { useSelector } from 'react-redux';
Expand Down

0 comments on commit 6f6cc22

Please sign in to comment.