1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

Merge branch 'feature/passkey-provider' into nathan/enable-autofill-extension

This commit is contained in:
Nathan Ansel
2025-04-25 09:52:07 -05:00
committed by GitHub
3 changed files with 8 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<div class="tw-flex tw-flex-col tw-h-full"> <div class="tw-flex tw-flex-col tw-h-full">
<bit-section <bit-section
disableMargin disableMargin
class="tw-border-0 tw-border-b tw-border-solid tw-border-secondary-300" class="passkey-header-sticky tw-border-0 tw-border-b tw-border-solid tw-border-secondary-300"
> >
<bit-section-header class="passkey-header tw-bg-background"> <bit-section-header class="passkey-header tw-bg-background">
<div class="tw-flex tw-items-center"> <div class="tw-flex tw-items-center">

View File

@@ -1,7 +1,7 @@
<div class="tw-flex tw-flex-col tw-h-full"> <div class="tw-flex tw-flex-col tw-h-full">
<bit-section <bit-section
disableMargin disableMargin
class="tw-border-0 tw-border-b tw-border-solid tw-border-secondary-300" class="passkey-header-sticky tw-border-0 tw-border-b tw-border-solid tw-border-secondary-300"
> >
<bit-section-header class="passkey-header tw-bg-background"> <bit-section-header class="passkey-header tw-bg-background">
<div class="tw-flex tw-items-center"> <div class="tw-flex tw-items-center">

View File

@@ -240,3 +240,9 @@
.passkey-header-close { .passkey-header-close {
-webkit-app-region: no-drag; -webkit-app-region: no-drag;
} }
.passkey-header-sticky {
position: sticky;
top: 0;
z-index: 1;
}