Skip to content
Snippets Groups Projects
Commit 19404a50 authored by Andreas Gärtner's avatar Andreas Gärtner
Browse files

Bugfix: Fix major flexbox layout problems for latest firefox versions

parent 30d6b11f
Branches
Tags
1 merge request!39Flashcards revisited
Pipeline #4863 passed with stages
in 1 minute and 8 seconds
This commit is part of merge request !39. Comments created here will be created in the context of that merge request.
......@@ -65,3 +65,14 @@ body.x-android.splashscreenClosed {
body.x-windows {
touch-action: none !important;
}
/* fix flexbox rendering in firefox 48+ */
.x-firefox {
.x-button,
.x-layout-box,
.x-layout-box > .x-layout-box-item {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment