Skip to content

Commit

Permalink
add margin for mfa factors
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Dec 13, 2023
1 parent c29d3fe commit 53fdf94
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions examples/vue-example/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,12 @@ body,
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
background-position: calc(100% - 20px) calc(1px + 50%), calc(100% - 16px) calc(1px + 50%);
background-size: 4px 4px, 4px 4px;
background-position:
calc(100% - 20px) calc(1px + 50%),
calc(100% - 16px) calc(1px + 50%);
background-size:
4px 4px,
4px 4px;
background-repeat: no-repeat;
}

Expand Down Expand Up @@ -379,3 +383,11 @@ body,
margin-top: 24px;
margin-bottom: -16px;
}

.mfa {
display: flex;
align-items: center;
column-gap: 16px;
margin-top: 24px;
margin-bottom: -16px;
}

0 comments on commit 53fdf94

Please sign in to comment.