Replaced btn-block class occurrences with w-100

This commit is contained in:
Alex Tselegidis 2021-11-23 08:33:43 +01:00
parent 6eaebe449e
commit 56a7ac1cd9
10 changed files with 10 additions and 10 deletions

View file

@ -410,7 +410,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -209,7 +209,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -404,7 +404,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -525,7 +525,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -433,7 +433,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -365,7 +365,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -410,7 +410,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -524,7 +524,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -433,7 +433,7 @@
} else if (response.length === this.filterLimit) {
$('<button/>', {
'type': 'button',
'class': 'btn btn-block btn-outline-secondary load-more text-center',
'class': 'btn btn-outline-secondary w-100 load-more text-center',
'text': EALang.load_more,
'click': function () {
this.filterLimit += 20;

View file

@ -104,7 +104,7 @@ window.FrontendBookApi = window.FrontendBookApi || {};
$('#available-hours').append(
$('<button/>', {
'class': 'btn btn-outline-secondary btn-block shadow-none available-hour',
'class': 'btn btn-outline-secondary w-100 shadow-none available-hour',
'data': {
'value': availableHour
},