css renovation 1

This commit is contained in:
YasinOnm08 2024-09-27 16:48:17 +02:00
parent 2090c3b16c
commit 98fb54a1fe
6 changed files with 20 additions and 14 deletions

View file

@ -2,10 +2,8 @@
.container,
.content {
display: flex;
height: 100vh;
width: 100vw;
overflow: hidden;
position: relative; /* Ensure relative positioning for proper transitions */
padding-top: 0.025vh;
}
.left-panel {
@ -30,6 +28,7 @@
transition: margin-left 0.3s ease; /* Smooth margin adjustment */
background-color: var(--conversation-background-color); /* Use variable for background color */
border-radius: 1em 0 0 0;
height: min-content;
}
/* Adjust margin-left when panel is shown or hidden */
@ -39,4 +38,5 @@
.conversation-container.collapsed {
margin-left: 1vw; /* Space for the left panel */
bottom: 0;
}