Skip to content

Instantly share code, notes, and snippets.

@jakemor
Last active March 18, 2021 20:50
Show Gist options
  • Save jakemor/3ccd8e1341d8e2a5e4506a2251b8b0df to your computer and use it in GitHub Desktop.
Save jakemor/3ccd8e1341d8e2a5e4506a2251b8b0df to your computer and use it in GitHub Desktop.
Remove branding and unnecessary components from Retool on mobile devices. Settings > Advanced > Preload CSS
div, body, html, table {
-webkit-overflow-scrolling: touch;
}
@media only screen and (max-width: 600px) {
.presentation-header-container {
display: none;
}
.ant-message-notice-content, .datasource-timer.elevation-1 {
display: none !important;
}
.retool-branding {
display: none !important;
}
}
@RicardoGomez91
Copy link

how legal is this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment