Commit 2d296715 by Simon Podlipsky

Show predefined time ranges as first in timepicker on small screens

parent 82adf539
...@@ -13,13 +13,18 @@ ...@@ -13,13 +13,18 @@
} }
.gf-timepicker-dropdown { .gf-timepicker-dropdown {
position: absolute;
top: $navbarHeight;
right: 0;
padding: 10px 20px;
background-color: $page-bg; background-color: $page-bg;
border-radius: 0 0 0 4px; border-radius: 0 0 0 4px;
box-shadow: $search-shadow; box-shadow: $search-shadow;
display: flex;
flex-direction: column-reverse;
padding: 10px 20px;
position: absolute;
right: 0;
top: $navbarHeight;
@include media-breakpoint-up(md) {
flex-direction: column;
}
} }
.gf-timepicker-absolute-section { .gf-timepicker-absolute-section {
......
Markdown is supported
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