minor style fixes
This commit is contained in:
parent
d85e1c671b
commit
3cd89e244e
5 changed files with 14 additions and 11 deletions
|
@ -430,12 +430,12 @@ textarea {
|
|||
|
||||
.section-figure .cms-plugin {
|
||||
padding: 10px;
|
||||
flex-basis: 50%;
|
||||
flex-basis: 50%;
|
||||
}
|
||||
|
||||
@media (max-width: 420px) {
|
||||
.section-figure .cms-plugin {
|
||||
flex-basis: 100%;
|
||||
flex-basis: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1249,5 +1249,9 @@ footer .dcl-link-separator::before {
|
|||
width: 4px;
|
||||
height: 4px;
|
||||
border-radius: 100%;
|
||||
background: #777;
|
||||
}
|
||||
background: #777;
|
||||
}
|
||||
|
||||
.whydcl-header .container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
</div>
|
||||
<div class="col-md-6 {% if instance.text_direction == 'right' %}col-md-pull-6{% endif %}">
|
||||
<div class="price-calc-section">
|
||||
<div class="landing card">
|
||||
<div class="card">
|
||||
{% include "datacenterlight/includes/_calculator_form.html" %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -119,7 +119,7 @@
|
|||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="price-calc-section">
|
||||
<div class="landing card">
|
||||
<div class="card">
|
||||
{% include "datacenterlight/includes/_calculator_form.html" %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -138,7 +138,7 @@
|
|||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="price-calc-section">
|
||||
<div class="landing card">
|
||||
<div class="card">
|
||||
{% include "datacenterlight/includes/_calculator_form.html" %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -641,10 +641,9 @@ DCL_ERROR_EMAILS_TO = env('DCL_ERROR_EMAILS_TO')
|
|||
|
||||
DCL_ERROR_EMAILS_TO_LIST = []
|
||||
if DCL_ERROR_EMAILS_TO is not None:
|
||||
DCL_ERROR_EMAILS_TO_LIST = [x.strip() for x in
|
||||
DCL_ERROR_EMAILS_TO.split(
|
||||
',')] \
|
||||
if "," in DCL_ERROR_EMAILS_TO else [DCL_ERROR_EMAILS_TO.strip()]
|
||||
DCL_ERROR_EMAILS_TO_LIST = [
|
||||
x.strip() for x in DCL_ERROR_EMAILS_TO.split(',')
|
||||
] if "," in DCL_ERROR_EMAILS_TO else [DCL_ERROR_EMAILS_TO.strip()]
|
||||
|
||||
if 'info@ungleich.ch' not in DCL_ERROR_EMAILS_TO_LIST:
|
||||
DCL_ERROR_EMAILS_TO_LIST.append('info@ungleich.ch')
|
||||
|
|
Loading…
Reference in a new issue