@npm_leadtech/legal-lib-components 2.38.1 → 2.39.1

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.
@@ -3001,6 +3001,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3001
3001
  @media (min-width: 960px) {
3002
3002
  .message-information {
3003
3003
  justify-content: flex-start; } }
3004
+ .message-information.text-center {
3005
+ justify-content: center; }
3004
3006
  .message-information__icon {
3005
3007
  width: 24px;
3006
3008
  fill: var(--secondary-main-dark-1);
@@ -3012,7 +3014,11 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3012
3014
  .message-information__text {
3013
3015
  font-size: 0.875rem;
3014
3016
  letter-spacing: -0.3px;
3015
- padding-top: 1px; }
3017
+ padding-top: 1px;
3018
+ text-align: left; }
3019
+ @media (min-width: 720px) {
3020
+ .message-information__text {
3021
+ text-align: center; } }
3016
3022
  .message-information__text__time {
3017
3023
  font-weight: 600; }
3018
3024
  .message-information__text__time.regular {
@@ -3,4 +3,5 @@ export interface MessageInformationProps {
3
3
  noImg: boolean;
4
4
  text: string | React.ReactNode;
5
5
  time?: string;
6
+ centered: boolean;
6
7
  }
@@ -3,4 +3,5 @@ export interface CountDownMessageProps {
3
3
  noImg?: boolean;
4
4
  text: string | React.ReactNode;
5
5
  time?: string;
6
+ centered?: boolean;
6
7
  }