@ansiversa/components 0.0.20 → 0.0.21
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/AvBreadcrumb.astro +3 -3
- package/src/styles/global.css +36 -0
package/package.json
CHANGED
package/src/AvBreadcrumb.astro
CHANGED
|
@@ -99,9 +99,9 @@ const rootClassAttr = rootClasses.join(" ");
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
.av-breadcrumb__current {
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
color: var(--ans-text, var(--ans-fg, #e5e7eb));
|
|
104
|
+
}
|
|
105
105
|
|
|
106
106
|
.av-breadcrumb__separator {
|
|
107
107
|
margin-inline: 0.125rem;
|
package/src/styles/global.css
CHANGED
|
@@ -1107,6 +1107,42 @@
|
|
|
1107
1107
|
stroke-width: 1.75;
|
|
1108
1108
|
}
|
|
1109
1109
|
|
|
1110
|
+
/* Grid utility */
|
|
1111
|
+
.av-card-grid {
|
|
1112
|
+
display: grid;
|
|
1113
|
+
gap: 1rem;
|
|
1114
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
1115
|
+
}
|
|
1116
|
+
/* Status pill utility */
|
|
1117
|
+
.av-status-pill {
|
|
1118
|
+
padding: 0.25rem 0.6rem;
|
|
1119
|
+
border-radius: 999px;
|
|
1120
|
+
background: rgba(148, 163, 184, 0.15);
|
|
1121
|
+
color: var(--av-fg, #e2e8f0);
|
|
1122
|
+
font-size: 0.85rem;
|
|
1123
|
+
white-space: nowrap;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
.av-status-pill--primary {
|
|
1127
|
+
background: rgba(34, 211, 238, 0.18);
|
|
1128
|
+
color: var(--av-fg, #e2e8f0);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
/* Loading bar utility */
|
|
1132
|
+
.av-loading-bar {
|
|
1133
|
+
height: 4px;
|
|
1134
|
+
width: 100%;
|
|
1135
|
+
background: linear-gradient(90deg, #22d3ee, #6366f1);
|
|
1136
|
+
animation: av-shimmer 1.6s linear infinite;
|
|
1137
|
+
margin-bottom: 1rem;
|
|
1138
|
+
background-size: 200% 100%;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
@keyframes av-shimmer {
|
|
1142
|
+
0% { background-position: 0 0; }
|
|
1143
|
+
100% { background-position: 200% 0; }
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1110
1146
|
}
|
|
1111
1147
|
|
|
1112
1148
|
|