1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

Basic layout for logic conditions

This commit is contained in:
Pawel Spychalski (DzikuVx) 2019-03-10 13:04:29 +01:00
parent 6306f53da6
commit 3c7cf5fc47
4 changed files with 67 additions and 1 deletions

22
src/css/logic.css Normal file
View file

@ -0,0 +1,22 @@
.logic__background {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: black;
opacity: 0.75;
z-index: 2000;
}
.logic__content {
position: absolute;
top: 2em;
bottom: 2em;
left: 4em;
right: 4em;
background-color: #efefef;
border-radius: 2px;
z-index: 2001;
padding: 2em;
}