@npm_leadtech/legal-lib-components 2.11.9 → 2.11.11

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.
@@ -1706,7 +1706,10 @@ html[data-theme='uslawdistricts'] {
1706
1706
  align-items: center;
1707
1707
  justify-content: flex-start;
1708
1708
  width: 17.625rem;
1709
- margin-left: 2rem; }
1709
+ margin-left: 0; }
1710
+ @media (min-width: 720px) {
1711
+ .expert-card__box {
1712
+ margin-left: 2rem; } }
1710
1713
  .expert-card__image {
1711
1714
  position: absolute;
1712
1715
  transform: translateY(-115%); }
@@ -3998,7 +4001,7 @@ html[data-theme='uslawdistricts'] {
3998
4001
  display: flex;
3999
4002
  justify-content: center;
4000
4003
  flex-direction: column;
4001
- background-color: var(--primary-main-light-6);
4004
+ background-color: var(--neutral-neutral-6);
4002
4005
  margin-bottom: 8rem; }
4003
4006
  .experts-section__title {
4004
4007
  font-family: Lora;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export interface SearchSelectProps {
2
3
  id?: string;
3
4
  name: string;
@@ -16,4 +17,6 @@ export interface SearchSelectProps {
16
17
  isSearchable?: boolean;
17
18
  placeholder?: string;
18
19
  defaultMenuIsOpen?: boolean;
20
+ tooltipBesideLabel?: React.ReactNode;
21
+ width?: boolean;
19
22
  }