Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): sla: time capsule width #1159

Merged
merged 1 commit into from
May 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(ui): sla: time capsule width
  • Loading branch information
ssiyad committed May 12, 2023
commit 7857e8d9dd60f32bbda50b1e4a8eee1dca4ccce2
4 changes: 2 additions & 2 deletions desk/src/pages/desk/settings/sla/SlaPolicy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,13 @@
>
<input
v-model="workingHour.from"
class="w-[6.4rem] rounded border-0 bg-gray-100 p-1 text-base"
class="w-28 rounded border-0 bg-gray-100 p-1 text-base"
type="time"
/>
<div class="text-gray-600">TO</div>
<input
v-model="workingHour.to"
class="w-[6.4rem] rounded border-0 bg-gray-100 p-1 text-base"
class="w-28 rounded border-0 bg-gray-100 p-1 text-base"
type="time"
/>
</div>
Expand Down