Skip to content

Commit 29c58fe

Browse files
committed
fix(css): Fix trim-alt-invert variable name (Fixes #3)
1 parent 18bace9 commit 29c58fe

File tree

5 files changed

+32
-227
lines changed

5 files changed

+32
-227
lines changed

plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Plugin Name: Modern Login
55
* Plugin URI: https://github.com/log1x/modern-login
66
* Description: A whitelabeled and modernized wp-login.php
7-
* Version: 1.0.5
7+
* Version: 1.0.6
88
* Author: Brandon Nifong
99
* Author URI: https://github.com/log1x
1010
* Licence: MIT

public/css/login.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"/css/login.css": "/css/login.css?id=8d633d9cbabde53ce1d0"
2+
"/css/login.css": "/css/login.css?id=49235b2b6e29018b357f"
33
}

tailwind.config.js

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
theme: {
33
extend: {
44
fontSize: {
5-
'none': '0',
5+
none: '0',
66
},
77
colors: {
88
brand: {
@@ -13,22 +13,25 @@ module.exports = {
1313
default: 'var(--login-trim, #191919)',
1414
alt: 'var(--login-trim-alt, #282828)',
1515
invert: 'var(--login-trim-invert, #fff)',
16-
'alt-invert': 'var(--login-alt-invert, #fff)',
16+
'alt-invert': 'var(--login-trim-alt-invert, #fff)',
1717
},
18-
}
19-
}
18+
},
19+
},
2020
},
2121
variants: {},
2222
plugins: [
2323
({ addUtilities }) => {
24-
addUtilities({
25-
'.indent-none': {
26-
'text-indent': '0',
27-
},
28-
'.bg-none': {
29-
'background-image': 'none',
24+
addUtilities(
25+
{
26+
'.indent-none': {
27+
'text-indent': '0',
28+
},
29+
'.bg-none': {
30+
'background-image': 'none',
31+
},
3032
},
31-
}, ['responsive'])
32-
}
33-
]
34-
}
33+
['responsive']
34+
);
35+
},
36+
],
37+
};

0 commit comments

Comments
 (0)