Skip to content

Commit 182104f

Browse files
0.5.0
1 parent 7810174 commit 182104f

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mage2pro/ipay88"
3-
,"version": "0.4.0"
3+
,"version": "0.5.0"
44
,"description": "The «iPay88» payment extension for Magento 2."
55
,"type": "magento2-module"
66
,"homepage": "https://mage2.pro/c/extensions/ipay88"
@@ -11,7 +11,7 @@
1111
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
1212
"role": "Developer"
1313
}]
14-
,"require": {"mage2pro/core": ">=2.4.54"}
14+
,"require": {"mage2pro/core": ">=2.4.55"}
1515
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\IPay88\\": ""}}
1616
,"keywords": [
1717
"API"

view/frontend/web/main.less

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,31 @@
11
// 2017-04-13
2+
.payment-method.dfe_ipay88 {
3+
max-width: 40em;
4+
// 2017-04-14
5+
// Ядро использует inline-block для больших экранов,
6+
// что делает кнопку маленькой и смещённой вправо,
7+
// она визуально теряется на фоне ярких логотипов опций оплаты.
8+
.actions-toolbar .primary, .actions-toolbar .secondary {
9+
display: block;
10+
float: none;
11+
width: 100%;
12+
max-width: 20em;
13+
margin: 1.5em auto 0 auto;
14+
}
15+
}
216
// 2017-04-14
317
// [iPay88] The available payment options for Malaysia: https://mage2.pro/t/3635
418
form.dfe_ipay88 {
19+
@media (min-width: 570px) {
20+
ul.df-options {
21+
-moz-column-count: 2;
22+
-moz-column-gap: 2em;
23+
-webkit-column-count: 2;
24+
-webkit-column-gap: em;
25+
column-count: 2;
26+
column-gap: 2em;
27+
}
28+
}
529
.choice label {
630
display: inline-block;
731
cursor: pointer;

0 commit comments

Comments
 (0)