https://i.sstatic.net/UvPU4.jpg
I am puzzled by the excessive vertical space between Status:
and CLOSED
. This issue is only visible on smaller screens, as they are displayed side by side on desktops.
Here is the code snippet causing the problem:
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm">
<h1 class="status">Status:</h1>
</div>
<div class="col-lg-8 col-md-7 col-sm-6 text-sm-left">
<span class="closed">closed</span>
</div>
</div>
.closed {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 100px;
color: #2eb82e;
text-shadow: 2px 2px #29a329;
}
.status {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 100px;
color: white;
}
If you have any insights or suggestions to resolve this issue, please let me know. Thank you for your help!
EDIT: It seems like the padding issue might be related to one of the
col-lg-8 col-md-7 col-sm-6
classes. Upon inspecting the div, I noticed that the.closed
and.status
elements do not exhibit this extra padding.