-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
md-app md-mode="fixed" not working #1297
Labels
Comments
You could add class or style on it. If you want it with a 100% viewport height, try: <template>
<md-app class="full-height" md-mode="fixed">
</md-app>
</template>
<style lang="scss" scoped>
.full-height {
height: 100vh;
}
</style> |
Remove root |
@Samuell1, tried this right now and does not work BUT it worked now when i tried this below.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The md-mode="fixed" is not working if i want a full height page to be scrollable but keeping the toolbar fixed.
Someone have achieved this? Thanks!
The text was updated successfully, but these errors were encountered: