Skip to content

Commit 2a35c7d

Browse files
committed
Fix snap points
1 parent b0d0ac1 commit 2a35c7d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/templates/Packet/Form.inc.phtml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use \BNETDocs\Libraries\Packet;
55
use \CarlBennett\MVC\Libraries\Common; ?>
66
<form method="POST">
77
<div class="row">
8-
<div class="col-md-3">
8+
<div class="col-lg-3">
99
<div class="form-group">
1010
<label class="font-weight-bold" for="direction">Direction:</label>
1111
<select class="bg-dark border border-primary custom-select text-light" name="direction" id="direction">
@@ -14,17 +14,17 @@ use \CarlBennett\MVC\Libraries\Common; ?>
1414
<option value="<?=Packet::DIRECTION_PEER_TO_PEER?>"<?=($form_fields['direction'] ?? null === Packet::DIRECTION_PEER_TO_PEER ? ' checked="checked"' : '')?>>Peer to Peer</option>
1515
</select>
1616
</div>
17-
</div><div class="col-md-3">
17+
</div><div class="col-lg-3">
1818
<div class="form-group">
1919
<label class="font-weight-bold" for="packet_id">Id:</label>
2020
<input class="bg-dark border border-primary form-control text-light" type="text" name="packet_id" id="packet_id" placeholder="Enter the message id here" tabindex="1" required autofocus="autofocus" value="<?=filter_var($form_fields['packet_id'] ?? null, FILTER_SANITIZE_FULL_SPECIAL_CHARS)?>"/>
2121
</div>
22-
</div><div class="col-md-3">
22+
</div><div class="col-lg-4">
2323
<div class="form-group">
2424
<label class="font-weight-bold" for="name">Name:</label>
2525
<input class="bg-dark border border-primary form-control text-light" type="text" name="name" id="name" placeholder="Enter the message name here" tabindex="2" required value="<?=$form_fields['name'] ?? ''?>"/>
2626
</div>
27-
</div><div class="col-md-3">
27+
</div><div class="col-lg-2">
2828
<div class="form-group">
2929
<label class="font-weight-bold">Options:</label>
3030
<div class="custom-control custom-switch"><input class="custom-control-input" type="checkbox" id="deprecated" name="deprecated" value="1"<?=($form_fields['deprecated'] ?? null ? ' checked="checked"' : '')?> tabindex="6"/><label class="custom-control-label text-danger" for="deprecated">Deprecated</label></div>

0 commit comments

Comments
 (0)