mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-18 10:04:04 +01:00
Move video background element up as it was causing the page to scroll.
This commit is contained in:
parent
f6258221c1
commit
99b0c9900e
1 changed files with 3 additions and 1 deletions
|
@ -47,6 +47,7 @@ textarea, input {
|
||||||
#header
|
#header
|
||||||
{
|
{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
z-index: 2;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
|
@ -103,7 +104,7 @@ textarea, input {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
top: 32px;
|
top: 0px;
|
||||||
left: 0px;
|
left: 0px;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
background-color: rgba(0,0,0,0.0);
|
background-color: rgba(0,0,0,0.0);
|
||||||
|
@ -118,6 +119,7 @@ textarea, input {
|
||||||
|
|
||||||
#videoContainer {
|
#videoContainer {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
top: 32px;
|
||||||
max-width: 1280px;
|
max-width: 1280px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue