mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
attaching accounts and displaying errors
This commit is contained in:
parent
3ae22fb63d
commit
b1c71faf3a
9 changed files with 140 additions and 18 deletions
36
src/components/profile/ProfileAccountsError/styles.scss
Normal file
36
src/components/profile/ProfileAccountsError/styles.scss
Normal file
|
@ -0,0 +1,36 @@
|
|||
.wrap {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 2;
|
||||
background-color: transparentize(black, 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
@include can_backdrop {
|
||||
background-color: transparentize($content_bg, 0.5);
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
}
|
||||
|
||||
.title {
|
||||
text-transform: capitalize;
|
||||
font: $font_cell_title;
|
||||
}
|
||||
|
||||
.text {
|
||||
padding: $gap 0 $gap * 3;
|
||||
}
|
||||
|
||||
.content {
|
||||
max-width: 260px;
|
||||
width: 100%;
|
||||
color: white;
|
||||
border-radius: $radius;
|
||||
background-color: $content_bg;
|
||||
padding: $gap * 2;
|
||||
line-height: 1.2em;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue