You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
449 B

@use '../settings/baseColors' as *;
@use '../settings/breakpoints' as *;
@use '../tools/mixins/mediaQueriesRanges' as *;
#chat-sidebar {
width: 250px;
height: calc(100vh - #{$header-height} - 60px);
overflow: auto;
@include to($breakpoint-md) {
transition: all 0.3s ease-in-out;
margin-left: -250px;
&.open {
margin-left: 0;
}
}
}
#chat-box {
height: calc(100vh - #{$header-height} - 60px);
overflow: auto;
}