-
Notifications
You must be signed in to change notification settings - Fork 6.7k
extra space next to the month selector #5392
Comments
I'm not seeing this on our demo page. Can you post a screenshot along with your code snippet? |
Oh. On the left side of the right arrow button. Thanks. |
@wesleycho, I think this is a browser bug. Chrome is allocating an extra 2px to the |
It's the pull-right class on the template here Year, Month, and Day templates all have the pull-right class on the right button. |
I think the fix for this should be .uib-right {
width: 100%;
} Would need to test across browsers though. |
That removes all the space entirely. Is that what we want? |
.uib-right {
width: 100%;
} seems to fix it for all of the occurrences Edit: @wesleycho 's solution is more simple but does the same thing |
It needs to be
or the spacing on the left won't match. |
in that case, why not .uib-left, .uib-right {
width: 100%
} Both CSS classes are only used in the template, I see no reason to complicate it |
I think the concern is if we ever use those classes for another component. I'm not hugely opinionated on which in this case. |
In chrome, there is extra space on the left side of the right arrow, next to the month selector.
The text was updated successfully, but these errors were encountered: