Skip to content

Commit

Permalink
Merge pull request #38 from 001elijah/fix
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
001elijah authored Jun 27, 2023
2 parents 140fc13 + fbe20dc commit 87e2d2d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions src/components/BoardList/BoardList.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import s from './BoardList.module.scss';
import { useState } from 'react';
import PropTypes from 'prop-types';
import { BoardItem } from '../BoardItem/BoardItem';
import sprite from 'assets/icons/sprite.svg';
import PropTypes from 'prop-types';
import { useState } from 'react';
import s from './BoardList.module.scss';

export const BoardList = ({ theme, boards }) => {

Expand Down
14 changes: 7 additions & 7 deletions src/components/BoardList/BoardList.module.scss
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
@import 'assets/styles/mixins';

.list {
height: 202px;
display: flex;
flex-direction: column;
row-gap: 4px;
height: calc(100vh - 611px);
width: 100%;
margin-top: 40px;
margin-bottom: 40px;
overflow-y: auto;

display: flex;
flex-direction: column;
gap: 4px;

@include tablet {
height: 380px;
height: calc(100vh - 655px);
}
@include desktop {
height: 126px;
height: calc(100vh - 646px);
}
}
2 changes: 1 addition & 1 deletion src/components/Sidebar/Sidebar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
display: flex;
flex-direction: column;
align-items: center;
overflow-y: scroll;
// overflow-y: scroll;

@include tablet {
min-width: 260px;
Expand Down
2 changes: 1 addition & 1 deletion src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
body {
margin: 0;
height: 100vh;
// overflow: hidden;
overflow: hidden;
font-family: 'Poppins-Regular', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand Down

0 comments on commit 87e2d2d

Please sign in to comment.