css progress 1
This commit is contained in:
parent
bd4e3af47f
commit
3e32ed6e0c
16 changed files with 61 additions and 86 deletions
|
@ -1,19 +1,19 @@
|
|||
/* container.css */
|
||||
.container,
|
||||
.content {
|
||||
.container{
|
||||
display: flex;
|
||||
width: 100vw;
|
||||
padding-top: 0.025vh;
|
||||
height: 100vh;
|
||||
padding-top: 12vh;
|
||||
}
|
||||
|
||||
.left-panel {
|
||||
margin-top: 5em;
|
||||
width: 25vw; /* Adjust as needed */
|
||||
transition: width 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Smooth transitions for all properties */
|
||||
background-color: var(--left-panel-background-color); /* Use variable for background color */
|
||||
border-radius: 0 1em 0 0;
|
||||
margin-left: 0;
|
||||
padding-right: 1em;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.left-panel.hidden {
|
||||
|
@ -23,12 +23,11 @@
|
|||
}
|
||||
|
||||
.conversation-container {
|
||||
margin-top: 5em;
|
||||
flex: 1;
|
||||
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;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/* Adjust margin-left when panel is shown or hidden */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue