Shifted QSO notifications to the right panel rather than top to keep elements at the same height

This commit is contained in:
Peter Goodhall
2019-06-13 14:39:35 +01:00
parent 4295e1881c
commit c676a35b21
2 changed files with 15 additions and 13 deletions

View File

@@ -1,17 +1,5 @@
<div class="container qso_panel">
<?php if($notice) { ?>
<div class="alert alert-info" role="alert">
<?php echo $notice; ?>
</div>
<?php } ?>
<?php if(validation_errors()) { ?>
<div class="alert alert-warning" role="alert">
<?php echo validation_errors(); ?>
</div>
<?php } ?>
<div class="row">
<div class="col-sm-5">
@@ -287,10 +275,20 @@
<div class="col-sm-7">
<?php if($notice) { ?>
<div class="alert alert-info" role="alert">
<?php echo $notice; ?>
</div>
<?php } ?>
<?php if(validation_errors()) { ?>
<div class="alert alert-warning" role="alert">
<?php echo validation_errors(); ?>
</div>
<?php } ?>
<div class="card previous-qsos">
<div class="card-header"><h2 class="card-title">Previous Contacts</h2></div>
<div class="card-header"><h4 class="card-title">Previous Contacts</h4></div>
<div class="card-body">
<div id="partial_view">

View File

@@ -106,4 +106,8 @@ TD.lotw{
.qso-edit-box {
padding: 10px;
}
.previous-qsos .card-title {
margin-bottom: 0px;
}