Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Apr 14, 2017
1 parent 7810174 commit 182104f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/ipay88"
,"version": "0.4.0"
,"version": "0.5.0"
,"description": "The «iPay88» payment extension for Magento 2."
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/ipay88"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.4.54"}
,"require": {"mage2pro/core": ">=2.4.55"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\IPay88\\": ""}}
,"keywords": [
"API"
Expand Down
24 changes: 24 additions & 0 deletions view/frontend/web/main.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
// 2017-04-13
.payment-method.dfe_ipay88 {
max-width: 40em;
// 2017-04-14
// Ядро использует inline-block для больших экранов,
// что делает кнопку маленькой и смещённой вправо,
// она визуально теряется на фоне ярких логотипов опций оплаты.
.actions-toolbar .primary, .actions-toolbar .secondary {
display: block;
float: none;
width: 100%;
max-width: 20em;
margin: 1.5em auto 0 auto;
}
}
// 2017-04-14
// [iPay88] The available payment options for Malaysia: https://mage2.pro/t/3635
form.dfe_ipay88 {
@media (min-width: 570px) {
ul.df-options {
-moz-column-count: 2;
-moz-column-gap: 2em;
-webkit-column-count: 2;
-webkit-column-gap: em;
column-count: 2;
column-gap: 2em;
}
}
.choice label {
display: inline-block;
cursor: pointer;
Expand Down

0 comments on commit 182104f

Please sign in to comment.