mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
Fix alignment of box content (#2471)
This commit is contained in:
parent
f804da3102
commit
4607e9d0ba
@ -120,11 +120,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.action-buttons {
|
.action-buttons {
|
||||||
&.count {
|
|
||||||
align-self: start;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row-btn {
|
.row-btn {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
@ -260,7 +255,6 @@
|
|||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
min-height: 1em;
|
|
||||||
|
|
||||||
@include themify($themes) {
|
@include themify($themes) {
|
||||||
color: themed("mutedColor");
|
color: themed("mutedColor");
|
||||||
@ -311,7 +305,6 @@
|
|||||||
.row-main {
|
.row-main {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
align-self: start;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&.box-content-row-flex,
|
&.box-content-row-flex,
|
||||||
@ -462,9 +455,13 @@
|
|||||||
|
|
||||||
.action-buttons {
|
.action-buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-self: start;
|
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
|
|
||||||
|
&.action-buttons-fixed {
|
||||||
|
align-self: start;
|
||||||
|
margin-top: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
.row-btn {
|
.row-btn {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: 10px 8px;
|
padding: 10px 8px;
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<span>{{ cipher.linkedFieldI18nKey(field.linkedId) | i18n }}</span>
|
<span>{{ cipher.linkedFieldI18nKey(field.linkedId) | i18n }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="action-buttons">
|
<div class="action-buttons action-buttons-fixed">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="row-btn"
|
class="row-btn"
|
||||||
|
@ -74,7 +74,7 @@
|
|||||||
[innerHTML]="cipher.login.password | colorPasswordCount"
|
[innerHTML]="cipher.login.password | colorPasswordCount"
|
||||||
></div>
|
></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="action-buttons">
|
<div class="action-buttons action-buttons-fixed">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
#checkPasswordBtn
|
#checkPasswordBtn
|
||||||
|
Loading…
Reference in New Issue
Block a user