pf bg
This commit is contained in:
parent
1a9a3b1bc4
commit
394b9d404a
|
@ -19,7 +19,6 @@
|
||||||
## In progress
|
## In progress
|
||||||
|
|
||||||
- Better timeline top bar
|
- Better timeline top bar
|
||||||
- Profile background
|
|
||||||
|
|
||||||
## Implemented
|
## Implemented
|
||||||
|
|
||||||
|
@ -30,6 +29,7 @@
|
||||||
- Better sidebar/navbar
|
- Better sidebar/navbar
|
||||||
- Mark as read from notifications widget
|
- Mark as read from notifications widget
|
||||||
- Less cluttered notification summary
|
- Less cluttered notification summary
|
||||||
|
- Profile background as banner
|
||||||
- Better welcome screen (not logged in)
|
- Better welcome screen (not logged in)
|
||||||
- Ability to turn off "Connection lost" message
|
- Ability to turn off "Connection lost" message
|
||||||
- Spinner instead of "Loading..."
|
- Spinner instead of "Loading..."
|
||||||
|
|
|
@ -47,6 +47,18 @@ defineProps<{
|
||||||
background-color: rgba(0, 0, 0, 0.1);
|
background-color: rgba(0, 0, 0, 0.1);
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
background-image: inherit;
|
||||||
|
position: fixed;
|
||||||
|
inset: 0;
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: .1;
|
||||||
|
filter: blur(10px);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> .avatar {
|
> .avatar {
|
||||||
|
|
Loading…
Reference in New Issue