@gyramais/gyra-design 0.2.1 → 0.2.2
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/dist/components/Card/Card.d.ts +8 -1
- package/dist/components/Card/index.js +6 -6
- package/dist/components/Card/index.js.map +1 -1
- package/dist/components/FloatingCard/index.js +7 -7
- package/dist/components/FloatingCard/index.js.map +1 -1
- package/dist/index.css +20 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -920,6 +920,9 @@ video {
|
|
|
920
920
|
--tw-text-opacity: 1;
|
|
921
921
|
color: rgb(59 57 64 / var(--tw-text-opacity, 1));
|
|
922
922
|
}
|
|
923
|
+
.text-\[var\(--color-text-secondary\)\] {
|
|
924
|
+
color: var(--color-text-secondary);
|
|
925
|
+
}
|
|
923
926
|
.text-\[var\(--primary-button-color\)\] {
|
|
924
927
|
color: var(--primary-button-color);
|
|
925
928
|
}
|
|
@@ -4314,6 +4317,23 @@ h6 {
|
|
|
4314
4317
|
display: flex;
|
|
4315
4318
|
flex-direction: column;
|
|
4316
4319
|
}
|
|
4320
|
+
/* Variante com mídia (ícone/badge): mídia à esquerda, texto à direita. */
|
|
4321
|
+
.gyramais-card .gyramais-card-header-left.with-media {
|
|
4322
|
+
flex-direction: row;
|
|
4323
|
+
align-items: center;
|
|
4324
|
+
gap: 0.75rem;
|
|
4325
|
+
}
|
|
4326
|
+
.gyramais-card .gyramais-card-header-media {
|
|
4327
|
+
display: flex;
|
|
4328
|
+
flex-shrink: 0;
|
|
4329
|
+
align-items: center;
|
|
4330
|
+
justify-content: center;
|
|
4331
|
+
}
|
|
4332
|
+
.gyramais-card .gyramais-card-header-text {
|
|
4333
|
+
display: flex;
|
|
4334
|
+
min-width: 0px;
|
|
4335
|
+
flex-direction: column;
|
|
4336
|
+
}
|
|
4317
4337
|
.gyramais-card:not(.gyramais-card-disabled)
|
|
4318
4338
|
.gyramais-card-header-left.with-collapse {
|
|
4319
4339
|
cursor: pointer;
|