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.

24 lines
439 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
/* 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;
}