💄 Updating the UI and style files.

This commit is contained in:
Wisp X
2022-01-21 07:58:02 +08:00
parent 5679d3876d
commit 13ac6b064d
2 changed files with 9 additions and 2 deletions
+7
View File
@@ -1035,6 +1035,9 @@ select {
.flex-col-reverse {
flex-direction: column-reverse;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-nowrap {
flex-wrap: nowrap;
}
@@ -1158,6 +1161,10 @@ select {
.whitespace-nowrap {
white-space: nowrap;
}
.break-normal {
overflow-wrap: normal;
word-break: normal;
}
.break-words {
overflow-wrap: break-word;
}
+2 -2
View File
@@ -91,9 +91,9 @@
<div class="col-span-6">
<fieldset>
<legend class="text-base font-medium text-gray-900">允许上传的图片类型</legend>
<div class="flex mt-4 space-x-4">
<div class="flex flex-wrap mt-4">
@foreach($extensions as $extension)
<div class="flex items-center h-5 space-x-2">
<div class="flex items-center h-5 space-x-2 mr-4">
<input id="{{ $extension }}" name="{{ $extension }}" type="checkbox" class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" checked>
<label for="{{ $extension }}" class="font-medium text-gray-700">{{ strtoupper($extension) }}</label>
</div>