Files
bodyshop/client/src/components/chat-popup/chat-popup.styles.scss
Dave Richer e83badb454 - the great reformat
Signed-off-by: Dave Richer <dave@imexsystems.ca>
2024-02-06 18:20:58 -05:00

29 lines
450 B
SCSS

.chat-popup {
width: 90vw;
height: 95vh;
display: flex;
flex-direction: column;
}
.chat-popup-content {
min-height: 0px; /* IMPORTANT: you need this for non-chrome browsers */
flex: 1;
//height: 100%;
.ant-col {
height: 100%;
}
}
.chat-popup-info-icon {
margin-right: 5px;
}
@media only screen and (min-width: 992px) {
.chat-popup {
width: 60vw;
height: 55vh;
display: flex;
flex-direction: column;
}
}