Skip to content

Commit

Permalink
Updated design changes in chat.blade.php
Browse files Browse the repository at this point in the history
Updated contact list colours and rounded borders ,etc
  • Loading branch information
shsaqib99 committed Nov 24, 2023
1 parent 17ff458 commit fd63782
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,6 @@ dist
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.pnp.*

.idea
27 changes: 16 additions & 11 deletions php/resources/views/chat.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,38 @@
<title>Laravel</title>

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet"/>


<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
<style>
#contacts-list {
overflow-y: auto;
width: 300px;
padding: 20px 40px;
height: 460px;
height: 500px;
background-color: #ECECEC;
}
border-radius:0.75rem;
border:1px solid #D4D4D4;
font-family: 'Inter';
}
#contacts-list h2{
padding:20px;
}
.contact-container {
height: 50px;
display: flex;
margin: 5px 0;
padding: 5px 0;
cursor: pointer;
border-bottom:1px solid #D4D4D4;
}
.contact-container:hover {
background-color: #fff;
background-color: #007DF9;
color:#fff;
font-weight: bold;
}
.contact-name {
padding: 0px 20px;
padding: 0 20px;
display: flex;
flex-direction: column;
justify-content: space-around;
Expand All @@ -43,7 +48,7 @@
</head>
<body>

<a href="{{route('chat')}}">TalkJS Chat</a>
<a href="{{route('home')}}">Go Back</a>

<script>
(function (t, a, l, k, j, s) {
Expand Down

0 comments on commit fd63782

Please sign in to comment.