@npm_leadtech/legal-lib-components 2.12.1 → 2.12.3

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.
@@ -4041,10 +4041,9 @@ html[data-theme='lawdistrict'] .e-button.--primary-3 {
4041
4041
  width: 100%; } }
4042
4042
 
4043
4043
  .people-say {
4044
- display: flex;
4045
- flex-direction: column;
4046
- justify-content: flex-start;
4047
- align-items: center; }
4044
+ width: 100%;
4045
+ margin: 0 auto;
4046
+ text-align: center; }
4048
4047
  .people-say__title {
4049
4048
  font-family: Lora;
4050
4049
  font-size: 32px;
@@ -1,5 +1,5 @@
1
1
  import { type TrustPilotProps } from '../../atoms/TrustPilot';
2
2
  export interface PeopleSayAboutUsSectionProps {
3
- title: string;
3
+ title?: string;
4
4
  contentTrustPilot: TrustPilotProps;
5
5
  }
@@ -4,3 +4,4 @@ declare const meta: Meta<typeof PeopleSayAboutUsSection>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof PeopleSayAboutUsSection>;
6
6
  export declare const Default: Story;
7
+ export declare const WithoutTitle: Story;