1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-17 07:15:13 +02:00

wrap generate & copy buttons in a flex container, flex containers do not wrap by default (#11558)

This commit is contained in:
Nick Krantz 2024-10-15 11:06:36 -05:00 committed by GitHub
parent 15e5a6d747
commit e5ca6fd460
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
<div class="tw-grow tw-flex tw-items-center"> <div class="tw-grow tw-flex tw-items-center">
<bit-color-password class="tw-font-mono" [password]="value$ | async"></bit-color-password> <bit-color-password class="tw-font-mono" [password]="value$ | async"></bit-color-password>
</div> </div>
<div class="tw-space-x-1"> <div class="tw-flex tw-items-center tw-space-x-1">
<button type="button" bitIconButton="bwi-generate" buttonType="main" (click)="generate$.next()"> <button type="button" bitIconButton="bwi-generate" buttonType="main" (click)="generate$.next()">
{{ "generatePassword" | i18n }} {{ "generatePassword" | i18n }}
</button> </button>

View File

@ -13,7 +13,7 @@
<div class="tw-grow tw-flex tw-items-center"> <div class="tw-grow tw-flex tw-items-center">
<bit-color-password class="tw-font-mono" [password]="value$ | async"></bit-color-password> <bit-color-password class="tw-font-mono" [password]="value$ | async"></bit-color-password>
</div> </div>
<div class="tw-space-x-1"> <div class="tw-flex tw-items-center tw-space-x-1">
<button type="button" bitIconButton="bwi-generate" buttonType="main" (click)="generate$.next()"> <button type="button" bitIconButton="bwi-generate" buttonType="main" (click)="generate$.next()">
{{ "generatePassword" | i18n }} {{ "generatePassword" | i18n }}
</button> </button>

View File

@ -2,7 +2,7 @@
<div class="tw-grow tw-flex tw-items-center"> <div class="tw-grow tw-flex tw-items-center">
<bit-color-password class="tw-font-mono" [password]="value$ | async"></bit-color-password> <bit-color-password class="tw-font-mono" [password]="value$ | async"></bit-color-password>
</div> </div>
<div class="tw-space-x-1"> <div class="tw-flex tw-items-center tw-space-x-1">
<button type="button" bitIconButton="bwi-generate" buttonType="main" (click)="generate$.next()"> <button type="button" bitIconButton="bwi-generate" buttonType="main" (click)="generate$.next()">
{{ "generatePassword" | i18n }} {{ "generatePassword" | i18n }}
</button> </button>