Skip to content

Commit

Permalink
Merge pull request #42 from Ayush-kr-giga/main
Browse files Browse the repository at this point in the history
Fixed missing messages section at bottom right place
  • Loading branch information
abhrajit2004 authored Oct 19, 2024
2 parents 5d11961 + 30aff42 commit f4b396a
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 0 deletions.
50 changes: 50 additions & 0 deletions css/messages.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#messages{
z-index: 5;
position: fixed;
height: 60px;
width: 400px;
/* background-color: yellow; */
display: flex;
align-items: center;
/* justify-content: center; */

background-color: black;
border-top: 0.6px solid rgb(25, 25, 25);
border-left: 0.6px solid rgb(25, 25, 25);
border-right: 0.6px solid rgb(25, 25, 25);

border-radius: 10px;
border-style: outset;
left:72%;
top:93%;


}

#messages span{
margin-left: 10px;
font-size: 20px;
font-style: bold;
font-weight: 900;
}


#img_messages1{
filter: invert(1);
height: auto;
max-width: 6%;

margin-left: 210px;

}



#img_messages2{
filter: invert(1);
height: auto;
max-width: 5%;
margin-left: 13px;
transform: rotate(270deg);

}
Binary file added expand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,22 @@
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link rel="stylesheet" href="css/output.css" />
<link rel="stylesheet" href="css/messages.css">
</head>
<body class="bg-black min-h-screen text-white">


<!-- messgaes start -->
<div id="messages">
<span>Messages</span>
<img src="messages.png" alt="" id="img_messages1">
<img src="expand.png" alt="" id="img_messages2">

</div>

<!-- messages end -->


<div class="flex flex-row container mx-auto">
<div class="left-sidebar h-full">
<div class="flex justify-between flex-col h-full">
Expand Down
Binary file added messages.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f4b396a

Please sign in to comment.