geonetwork-ui 2.2.0-dev.5042be2c → 2.2.0-dev.54d2ced0
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/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +3 -3
- package/fesm2022/geonetwork-ui.mjs +4 -4
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +1 -1
- package/tailwind.base.config.js +3 -0
- package/tailwind.base.css +2 -2
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<button
|
|
2
|
-
class="group flex items-center justify-center gap-1 backdrop-blur p-1 bg-primary-opacity-30
|
|
2
|
+
class="group flex items-center justify-center gap-1 backdrop-blur p-1 bg-primary-opacity-30 rounded content-center"
|
|
3
3
|
>
|
|
4
4
|
<mat-icon class="material-symbols-outlined align-middle w-[18px]">{{
|
|
5
5
|
icon
|
package/tailwind.base.config.js
CHANGED
|
@@ -52,6 +52,9 @@ module.exports = {
|
|
|
52
52
|
'var(--font-family-title, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif)', // alias for serif
|
|
53
53
|
mono: 'ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
|
|
54
54
|
},
|
|
55
|
+
fontWeight: {
|
|
56
|
+
title: '600',
|
|
57
|
+
},
|
|
55
58
|
fontSize: {
|
|
56
59
|
13: '13px',
|
|
57
60
|
21: [
|
package/tailwind.base.css
CHANGED
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
|
|
32
32
|
.btn-outline {
|
|
33
33
|
@apply btn text-main
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
bg-transparent hover:text-primary-darker focus:text-primary-darker active:text-primary-black
|
|
35
|
+
border border-gray-300 hover:border-primary-lighter focus:border-primary-lighter focus:ring-4 focus:ring-primary-lightest active:border-primary-darker;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.btn-light {
|