diff --git a/.dockerignore b/.dockerignore
index 0fb19a2..9cd6448 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -2,4 +2,9 @@
.vscode/
# Exclude .git directory
-.git/
\ No newline at end of file
+.git/
+.github/
+
+*.md
+.gitignore
+.dockerignore
\ No newline at end of file
diff --git a/includes/version.php b/includes/version.php
index 4c5ec8b..2d0521d 100644
--- a/includes/version.php
+++ b/includes/version.php
@@ -1,3 +1,3 @@
\ No newline at end of file
diff --git a/index.php b/index.php
index 64a8ffd..51cf986 100644
--- a/index.php
+++ b/index.php
@@ -385,17 +385,24 @@ $headerClass = count($subscriptions) > 0 ? "main-actions" : "main-actions hidden
+
-
@@ -472,7 +479,9 @@ $headerClass = count($subscriptions) > 0 ? "main-actions" : "main-actions hidden
diff --git a/styles/styles.css b/styles/styles.css
index f65cae2..4f53a6b 100644
--- a/styles/styles.css
+++ b/styles/styles.css
@@ -1238,6 +1238,8 @@ header #avatar {
.form-group .inline .split50 {
flex-basis: 50%;
+ display: flex;
+ flex-direction: column;
}
.form-group.hide,
@@ -1330,13 +1332,20 @@ select {
height: 50px;
}
-input[type="date"] {
- flex-grow: 1;
- width: 100%;
+.date-wrapper {
display: flex;
+ flex-grow: 0;
+ flex-direction: row;
+ flex-basis: 100%;
+ box-sizing: border-box;
+}
+
+input[type="date"] {
+ display: flex;
+ flex-grow: 1;
flex-direction: row;
align-items: center;
- min-width: 85%;
+ flex-basis: 100%;
box-sizing: border-box;
}
@@ -2838,7 +2847,27 @@ input[type="radio"]:checked+label::after {
}
}
+.button.autofill-next-payment {
+ padding: 15px 15px !important;
+ margin-top: 22px;
+}
+
.autofill-next-payment {
color: var(--main-color);
cursor: pointer;
+}
+
+.autofill-next-payment.hideOnDesktop {
+ display: none;
+}
+
+@media (max-width: 768px) {
+ .button.autofill-next-payment.hideOnMobile {
+ display: none !important;
+ }
+
+
+ .autofill-next-payment.hideOnDesktop {
+ display: block;
+ }
}
\ No newline at end of file