Limit the height of the edit view
This commit is contained in:
parent
d81379d425
commit
74382d9d17
7 changed files with 12 additions and 6 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -8127,6 +8127,9 @@ video {
|
||||||
background-color: rgba(0, 0, 0, 0.6);
|
background-color: rgba(0, 0, 0, 0.6);
|
||||||
z-index: 100; }
|
z-index: 100; }
|
||||||
|
|
||||||
|
.height-max-view {
|
||||||
|
max-height: calc(99vh - ( 3.25rem )); }
|
||||||
|
|
||||||
.book-uploading-overlay-content {
|
.book-uploading-overlay-content {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
|
|
|
@ -513,6 +513,9 @@ video{
|
||||||
background-color: rgba($color: #000000, $alpha: .6);
|
background-color: rgba($color: #000000, $alpha: .6);
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
.height-max-view{
|
||||||
|
max-height: calc(99vh - ( #{$navbar-height} ) );
|
||||||
|
}
|
||||||
.book-uploading-overlay-content{
|
.book-uploading-overlay-content{
|
||||||
position: relative;
|
position: relative;
|
||||||
top:50%;
|
top:50%;
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="column is-9">
|
<div class="column is-9">
|
||||||
<div class="card is-fullheight-container bg-flower">
|
<div class="card is-fullheight-container bg-flower height-max-view">
|
||||||
<div class="card-content is-fullheight-container">
|
<div class="card-content is-fullheight-container">
|
||||||
<div class="tabs-container has-text-centered m-b-lg">
|
<div class="tabs-container has-text-centered m-b-lg">
|
||||||
<div class="tabs is-centered">
|
<div class="tabs is-centered">
|
||||||
|
|
Reference in a new issue