Skip to content

Commit 5008bbf

Browse files
committed
fix(QBtn): round ones on iOS
1 parent 530be08 commit 5008bbf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/components/btn/QBtn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export default {
130130
: null,
131131

132132
h('div', {
133-
staticClass: 'q-btn-inner row flex-center',
133+
staticClass: 'q-btn-inner row col flex-center',
134134
'class': {
135135
'no-wrap': this.noWrap,
136136
'text-no-wrap': this.noWrap

src/components/btn/QBtnToggle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default {
5656
h('div', { staticClass: 'q-focus-helper' }),
5757

5858
h('div', {
59-
staticClass: 'q-btn-inner row flex-center',
59+
staticClass: 'q-btn-inner row col flex-center',
6060
'class': {
6161
'no-wrap': this.noWrap,
6262
'text-no-wrap': this.noWrap

src/components/fab/QFab.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ export default {
5151
}, [
5252
this.$slots.tooltip,
5353
h(QIcon, {
54-
staticClass: 'q-fab-icon absolute-full row flex-center full-width full-height',
54+
staticClass: 'q-fab-icon absolute-full',
5555
props: { name: this.icon || this.$q.icon.fab.icon }
5656
}),
5757
h(QIcon, {
58-
staticClass: 'q-fab-active-icon absolute-full row flex-center full-width full-height',
58+
staticClass: 'q-fab-active-icon absolute-full',
5959
props: { name: this.activeIcon || this.$q.icon.fab.activeIcon }
6060
})
6161
]),

src/components/scroll-area/QScrollArea.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export default {
172172
}, [
173173
h('div', {
174174
ref: 'target',
175-
staticClass: 'scroll relative-position overflow-hidden full-height full-width',
175+
staticClass: 'scroll relative-position overflow-hidden fit',
176176
on: {
177177
wheel: this.__mouseWheel,
178178
mousewheel: this.__mouseWheel,

0 commit comments

Comments
 (0)