Skip to content

Commit

Permalink
backend
Browse files Browse the repository at this point in the history
  • Loading branch information
sonuku092 committed Feb 27, 2024
1 parent fe0501a commit 92863c5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
}
4 changes: 2 additions & 2 deletions frontend/src/components/Chats/Chats.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ function Chats(props) {
</div>
</div>

<div className="w-full h-[93vh] flex">
<div className="w-full h-[93vh] pb-1 flex">
<div className={`${styles.slider} ${showList ? styles.show : styles.hide}`}>
{showList &&
<div className="p-2 w-44">
<div className="p-2 m-1 rounded-md bg-slate-100 items-center">
List the items
</div>}
</div>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/Chats/Chats.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
overflow: hidden;
transition: width 0.5s ease-in-out;
width: 0;
align-items: center;
}

.rslider {
Expand Down

0 comments on commit 92863c5

Please sign in to comment.