Remove websockets
This commit is contained in:
parent
8f8242a97a
commit
7b7a9b0fc2
17 changed files with 196 additions and 123 deletions
|
@ -58,7 +58,7 @@
|
|||
width: 100%;
|
||||
height: 100%;
|
||||
border-bottom: solid 1px var(--table-border-color);
|
||||
box-shadow: 0 0 4px black;
|
||||
box-shadow: 0 0 4px var(--shadow-color);
|
||||
top: -1rem;
|
||||
padding-top: 1.2rem;
|
||||
}
|
||||
|
|
|
@ -160,3 +160,25 @@ a {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.offline-banner {
|
||||
position: fixed;
|
||||
bottom: 3rem;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 3rem;
|
||||
line-height: 3rem;
|
||||
text-align: center;
|
||||
font-size: 1.2rem;
|
||||
background-color: var(--primary-color);
|
||||
color: var(--primary-text-color);
|
||||
z-index: 12;
|
||||
box-shadow: 0 1px 4px var(--shadow-color);
|
||||
display: none;
|
||||
}
|
||||
|
||||
body.offline {
|
||||
.offline-banner {
|
||||
display: block;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue