/* ————————————-
RESPONSIVENESS
!importants in here are necessary since email clients
don’t automatically override these
————————————- */
@media only screen and (max-device-width: 700px) {
.table-wrapper, .legal-wrapper {
width: 100% !important;
margin-top: 0px !important;
}
.table-wrapper {
border-radius: 0px !important;
}
.header {
border-radius: 0px !important;
}
.header-title {
padding-left: 20px !important;
padding-right: 20px !important;
}
.header-title h1 {
font-size: 25px !important;
}
.data-table {
width: 100% !important;
margin: 0 !important;
}
}
|