@pushword/js-helper 0.0.131 → 0.0.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/app.css +1 -1
- package/src/tailwind.prose.scss +17 -0
package/package.json
CHANGED
package/src/app.css
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
@import './utility.css'; /* node_modules/@pushword/js-helper/src/utility.css */
|
|
6
6
|
/* @plugin "@tailwindcss/forms"; */
|
|
7
7
|
|
|
8
|
-
@import '
|
|
8
|
+
@import 'glightbox/dist/css/glightbox.css';
|
|
9
9
|
|
|
10
10
|
/*
|
|
11
11
|
Tailwind content sources for all packages
|
package/src/tailwind.prose.scss
CHANGED
|
@@ -31,6 +31,23 @@
|
|
|
31
31
|
color: #fff !important;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
.link-btn-outline {
|
|
35
|
+
padding: 6px 12px;
|
|
36
|
+
margin-bottom: 0;
|
|
37
|
+
border-radius: 3px;
|
|
38
|
+
border: 1px solid var(--primary);
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
color: var(--primary) !important;
|
|
41
|
+
background-color: transparent;
|
|
42
|
+
outline: none;
|
|
43
|
+
text-decoration: none !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.link-btn-outline:hover {
|
|
47
|
+
color: #fff !important;
|
|
48
|
+
background-color: var(--primary);
|
|
49
|
+
}
|
|
50
|
+
|
|
34
51
|
/**
|
|
35
52
|
* Some smoothiness
|
|
36
53
|
*/
|