mirror of
https://github.com/ivabus/gui
synced 2025-06-07 15:50:27 +03:00
Merge pull request #84 from teaxyz/background-grid-edits
Added a Different Background Grid
This commit is contained in:
commit
78de78f52e
2 changed files with 26 additions and 8 deletions
|
@ -49,14 +49,31 @@
|
|||
height: 100vh;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
figure {
|
||||
position: fixed;
|
||||
z-index: 0;
|
||||
top: 220px;
|
||||
left: 240px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
background-image: url('/images/footer-grid-element.svg');
|
||||
@media screen and (min-width: 1215px) {
|
||||
figure {
|
||||
position: fixed;
|
||||
z-index: 0;
|
||||
top: 220px;
|
||||
left: 240px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
background-image: url('/images/gui-background-grid.svg');
|
||||
background-size: cover;
|
||||
background-repeat: repeat;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 1215px) {
|
||||
figure {
|
||||
position: fixed;
|
||||
z-index: 0;
|
||||
top: 220px;
|
||||
left: 240px;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
background-image: url('/images/gui-background-grid.svg');
|
||||
background-size: contain;
|
||||
background-repeat: repeat;
|
||||
}
|
||||
}
|
||||
header {
|
||||
position: absolute;
|
||||
|
|
1
packages/gui/static/images/gui-background-grid.svg
Normal file
1
packages/gui/static/images/gui-background-grid.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 26 KiB |
Loading…
Reference in a new issue