Skip to content

Commit

Permalink
Merge pull request #90 from cocoon/fix/css
Browse files Browse the repository at this point in the history
fix some position problems
  • Loading branch information
bamotav committed Feb 13, 2023
2 parents 046fa40 + ec3992f commit 21057b5
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
/** Main */
/** Main */
#app {
position: relative !important;
left: -229px !important;
left: 0px !important;
}

#app > div > div {
margin-top: 30px !important;
width: 1626px !important
width: 100% !important;
}

/* Modal */
.modal-mask {
position: fixed;
overflow-y: scroll;
position: absolute;
z-index: 9998;
top: 0;
left: 0;
top: -200px; /*same as .modal-wrapper padding-top: 200px; */
/*left: 0px;*/
width: 100%;
height: 100%;
height: calc(100vh + 120px);
background-color: rgba(0, 0, 0, .5);
display: table;
transition: opacity .3s ease;
}

.modal-wrapper {
display: table-cell;
vertical-align: middle;
vertical-align: top;
padding-top: 200px; /*same as .modal-mask top: -200px; */
}

.modal-container {
Expand Down Expand Up @@ -157,4 +159,4 @@
.cronContainer button:hover, .cronContainer button:active, .cronContainer button:focus {
height: 34px !important;
outline: none !important;
}
}

0 comments on commit 21057b5

Please sign in to comment.