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

40 lines
758 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
.fixedSideHeader::-webkit-scrollbar {
width: 5px;
/* Width of the entire scrollbar */
}
.fixedSideHeader::-webkit-scrollbar-thumb {
background: #7B8894;
/* Color of the scroll thumb */
}
.fixedSideHeader::-webkit-scrollbar-track {
background: #5a5a5a3c;
/* Color of the scrollbar track */
}
/* FOR THE IFRAME TO TAKE 95% OF WIDTH ON SMALL SCREEN SIZES */
@media screen and (max-width: 798px) {
#popupModalFrame {
width: 100% !important;
}
}
/* TO ANIMATE THE BURGER MENU IN THE FIXED HEADER */
/* Default state */
.burgerMenuLine {
width: 25px;
height: 2px;
}
/* Expanded state */
.burgerMenuLine.expanded {
width: 2px;
height: 25px;
}