@npm_leadtech/legal-lib-components 3.7.6 → 3.7.7
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +61 -0
- package/dist/cjs/src/components/atoms/Tag/Tag.d.ts +4 -0
- package/dist/cjs/src/components/atoms/Tag/TagProps.d.ts +5 -0
- package/dist/cjs/src/components/atoms/Tag/index.d.ts +2 -0
- package/dist/cjs/src/components/atoms/index.d.ts +1 -0
- package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +4 -0
- package/dist/cjs/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts +8 -0
- package/dist/cjs/src/components/organisms/CardFuncionality/index.d.ts +2 -0
- package/dist/cjs/src/components/organisms/index.d.ts +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +61 -0
- package/dist/esm/src/components/atoms/Tag/Tag.d.ts +4 -0
- package/dist/esm/src/components/atoms/Tag/TagProps.d.ts +5 -0
- package/dist/esm/src/components/atoms/Tag/index.d.ts +2 -0
- package/dist/esm/src/components/atoms/index.d.ts +1 -0
- package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionality.d.ts +4 -0
- package/dist/esm/src/components/organisms/CardFuncionality/CardFuncionalityProps.d.ts +8 -0
- package/dist/esm/src/components/organisms/CardFuncionality/index.d.ts +2 -0
- package/dist/esm/src/components/organisms/index.d.ts +1 -0
- package/dist/index.d.ts +19 -1
- package/package.json +1 -1
|
@@ -1792,6 +1792,8 @@ h2.react-datepicker__current-month {
|
|
|
1792
1792
|
color: var(--neutral-neutral-2); }
|
|
1793
1793
|
.disclaimer-ratafia__copyright__text a, .disclaimer-ratafia__legal-advice__text a {
|
|
1794
1794
|
color: var(--neutral-neutral-2); }
|
|
1795
|
+
.disclaimer-ratafia__legal-advice {
|
|
1796
|
+
margin-bottom: 16px; }
|
|
1795
1797
|
.disclaimer-ratafia__disclaimer-fixed {
|
|
1796
1798
|
border-radius: 5px 5px 0 0;
|
|
1797
1799
|
position: fixed;
|
|
@@ -3199,6 +3201,23 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3199
3201
|
width: 20px;
|
|
3200
3202
|
height: 20px; }
|
|
3201
3203
|
|
|
3204
|
+
.tag {
|
|
3205
|
+
align-items: center;
|
|
3206
|
+
background: var(--secondary-main-light-4);
|
|
3207
|
+
border-radius: 4px;
|
|
3208
|
+
display: flex;
|
|
3209
|
+
gap: 4px;
|
|
3210
|
+
justify-content: center;
|
|
3211
|
+
padding: 4px;
|
|
3212
|
+
width: fit-content; }
|
|
3213
|
+
.tag .icon {
|
|
3214
|
+
display: flex; }
|
|
3215
|
+
.tag .text {
|
|
3216
|
+
color: var(--neutral-neutral-1);
|
|
3217
|
+
font-size: 12px;
|
|
3218
|
+
font-weight: 700;
|
|
3219
|
+
line-height: 16px; }
|
|
3220
|
+
|
|
3202
3221
|
.tagline {
|
|
3203
3222
|
margin-bottom: 1rem; }
|
|
3204
3223
|
|
|
@@ -5167,6 +5186,48 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
5167
5186
|
color: var(--primary-main-light-1);
|
|
5168
5187
|
font-weight: 400 !important; }
|
|
5169
5188
|
|
|
5189
|
+
.card-funcionality {
|
|
5190
|
+
border-radius: 4px;
|
|
5191
|
+
box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1-rgb), 0.2);
|
|
5192
|
+
display: flex;
|
|
5193
|
+
flex-direction: column;
|
|
5194
|
+
gap: 1rem;
|
|
5195
|
+
padding: 1em; }
|
|
5196
|
+
.card-funcionality .content-tags {
|
|
5197
|
+
display: flex;
|
|
5198
|
+
flex-direction: column;
|
|
5199
|
+
gap: 1rem; }
|
|
5200
|
+
.card-funcionality .content-tags .content {
|
|
5201
|
+
display: flex;
|
|
5202
|
+
flex-direction: column;
|
|
5203
|
+
gap: 0.5rem; }
|
|
5204
|
+
.card-funcionality .content-tags .content .header {
|
|
5205
|
+
display: flex;
|
|
5206
|
+
align-items: center;
|
|
5207
|
+
gap: 10px; }
|
|
5208
|
+
.card-funcionality .content-tags .content .header .icon {
|
|
5209
|
+
padding: 2px;
|
|
5210
|
+
border-radius: 4px;
|
|
5211
|
+
background: var(--primary-main-light-5); }
|
|
5212
|
+
.card-funcionality .content-tags .content .header .title {
|
|
5213
|
+
color: var(--neutral-neutral-1);
|
|
5214
|
+
font-weight: 700; }
|
|
5215
|
+
.card-funcionality .content-tags .content .text {
|
|
5216
|
+
overflow: hidden;
|
|
5217
|
+
color: var(--neutral-neutral-1);
|
|
5218
|
+
font-size: 14px;
|
|
5219
|
+
display: -webkit-box;
|
|
5220
|
+
-webkit-line-clamp: 2;
|
|
5221
|
+
line-clamp: 2;
|
|
5222
|
+
-webkit-box-orient: vertical; }
|
|
5223
|
+
.card-funcionality .content-tags .tags {
|
|
5224
|
+
display: flex;
|
|
5225
|
+
gap: 2rem;
|
|
5226
|
+
flex-wrap: wrap; }
|
|
5227
|
+
.card-funcionality .cta-card {
|
|
5228
|
+
align-self: flex-start;
|
|
5229
|
+
margin-top: 0; }
|
|
5230
|
+
|
|
5170
5231
|
.contact__text .contact__text__title {
|
|
5171
5232
|
color: var(--primary-main-dark-1);
|
|
5172
5233
|
margin-bottom: 2rem;
|
|
@@ -2,6 +2,7 @@ export * from './AboutUsContent';
|
|
|
2
2
|
export * from './Accordion';
|
|
3
3
|
export * from './ArticlesList';
|
|
4
4
|
export * from './AsSeeInContent';
|
|
5
|
+
export * from './CardFuncionality';
|
|
5
6
|
export * from './ContactJumbotron';
|
|
6
7
|
export * from './CookiePolicyBar';
|
|
7
8
|
export * from './ErrorContentRatafia';
|