css removal unused lines

This commit is contained in:
sageTheDM 2024-10-08 17:37:17 +02:00
parent 4b21fe04f3
commit 9c8bc39b9d
17 changed files with 138 additions and 352 deletions

View file

@ -5,8 +5,7 @@
height: 90dvh;
padding-top: 1dvh;
}
.left-panel {
.left-panel{
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 */
@ -14,23 +13,17 @@
margin-left: 0;
padding-right: 1em;
}
.left-panel.hidden {
.left-panel.hidden{
opacity: 0; /* Fade out when hidden */
width: 0; /* Collapse width to 0 */
visibility: hidden; /* Hide visibility while collapsing */
}
.conversation-container {
.conversation-container{
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;
}
.conversation-container.collapsed {
.conversation-container.collapsed{
margin-left: 1vw; /* Space for the left panel */
}