fix(console): height fit-content for 2FA buttons (#7335)

* fix(console): height fit-content for 2FA buttons

* add flex

---------

Co-authored-by: peintnermax <max@caos.ch>
This commit is contained in:
Miguel Cabrerizo 2024-02-14 14:29:34 +01:00 committed by GitHub
parent 2e41764d27
commit e81a24b92d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,11 +9,11 @@
.otp-btn,
.u2f-btn {
flex: 1;
border-radius: 0.5rem;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
box-sizing: border-box;
white-space: normal;
line-height: 1.5rem;
@ -67,6 +67,10 @@
button {
margin: 0.5rem;
height: fit-content;
display: flex;
align-items: center;
justify-content: flex-start;
}
}