Vuetify: 1.1.0-rc.3
Vue: 2.5.16
Browsers: Chrome 67.0.3396.87
OS: Windows 10
Resize to ~1300px width
As in 1.0, tabs should be right against the edge: https://codepen.io/anon/pen/qKLNoM?editors=1000
There is an extra 24px margin on either side
https://codepen.io/anon/pen/yEGJEX?editors=1000
This can't be easily fixed with negative margins.
Mobile:

Arrows visible:

Between 1264px and 1377px it has an extra extra margin left. Both versions have this behavior.
The regression is the applied gutter which 1.0 doesn't have.
Version fixed codepens:
Things to analise:
px-0, because the padding is at the content (same issue as #3936)The "extra margin left" is because that is a desktop resolution with overflow, so space is reserved for the scroll arrow. It is not a bug.
the user can't remove the padding
Exactly my point. At least the old contextual margins could be overridden with mx-0 for example. Maybe the padding could be moved to the parent container, but then users would have to re-implement gutters if they want to have tabs in the extension and icons above.
(future) MD2 spec has an extra left margin if scrollable
Old MD spec has that too, but john wanted to hide it behind the align-with-title prop for some reason.
Fixed in f22d754
I think this is still happening https://codepen.io/gadelkareem/pen/EqdWYY
I think the 'v-tabs-bar--is-mobile' class is added on width between 940px and 1400px, something like that. Try changing width and keep your eye on the margin.
Same issue. Seems to switch at around 1100px.
Fixed it for now by adding to my css:
.v-tabs-bar.v-tabs-bar--is-mobile .v-tab {
margin-left: 0px !important;
}
@arnovanoordt that work for me thank U. if they are not fixing this, at least they should put a property to.
Most helpful comment
Same issue. Seems to switch at around 1100px.
Fixed it for now by adding to my css: