diff --git a/src/app/shared/components/ui/copy-text/copy-text.component.html b/src/app/shared/components/ui/copy-text/copy-text.component.html index 60b17a8a..c4265506 100644 --- a/src/app/shared/components/ui/copy-text/copy-text.component.html +++ b/src/app/shared/components/ui/copy-text/copy-text.component.html @@ -1,5 +1,7 @@ diff --git a/src/app/shared/components/ui/copy-text/copy-text.component.ts b/src/app/shared/components/ui/copy-text/copy-text.component.ts index 31c295b9..ae3cd96f 100644 --- a/src/app/shared/components/ui/copy-text/copy-text.component.ts +++ b/src/app/shared/components/ui/copy-text/copy-text.component.ts @@ -11,6 +11,7 @@ import { ToastService } from '../../../../core/services/toast.service'; export class CopyTextComponent implements OnInit { @Input() public textToCopy: string; public displayContentToCopy = false; + @Input() public displayLabelButton = true; constructor(private _clipboardService: ClipboardService, private toastService: ToastService) {} diff --git a/src/styles/dev-utilities/_helpers.scss b/src/styles/dev-utilities/_helpers.scss index 754805da..656c7dd4 100644 --- a/src/styles/dev-utilities/_helpers.scss +++ b/src/styles/dev-utilities/_helpers.scss @@ -15,6 +15,12 @@ box-shadow: $dark-lavender 0 0 10px; } +.is-boxed { + border: 1px solid #ddd; + padding: 1em; + margin: 1em 0; +} + .nobold { font-weight: normal; }