Skip to content

Commit f58e8ff

Browse files
committed
fixed width contaienr ids
1 parent 5c041ca commit f58e8ff

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

MyDevTools/Components/Pages/ContainerIds.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<div class="row mt-4">
3131
<div class="col-md-6 offset-md-3">
3232
<label>Generated Codes:</label>
33-
<textarea readonly class="form-control" rows="6">@generatedCodes</textarea>
33+
<textarea readonly class="form-control monospace-font" style="width: 180px;" rows="6">@generatedCodes</textarea>
3434
<div class="mt-2 text-success">@copyConfirmationMessage</div>
3535
</div>
3636
</div>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.monospace-font {
2+
font-family: 'Consolas', 'Courier New', 'Lucida Console', 'Monaco', monospace;
3+
}
4+
5+
.container-id-textarea {
6+
width: 180px;
7+
}

0 commit comments

Comments
 (0)