fix: installment comma input

This commit is contained in:
puriphatt 2024-10-16 11:13:34 +07:00
parent 1e503a1e43
commit b12b410b2b
3 changed files with 7 additions and 10 deletions

View file

@ -600,8 +600,8 @@ async function searchEmployee(text: string) {
<template>
<div class="fullscreen column surface-0">
<div class="color-bar">
<div class="blue-segment"></div>
<div class="orange-segment"></div>
<div class="yellow-segment"></div>
<div class="gray-segment"></div>
</div>
@ -1442,12 +1442,12 @@ async function searchEmployee(text: string) {
overflow: hidden;
}
.blue-segment {
.orange-segment {
background-color: var(--yellow-7);
flex-grow: 4;
}
.orange-segment {
.yellow-segment {
background-color: hsla(var(--yellow-7-hsl) / 0.2);
flex-grow: 0.5;
}
@ -1457,8 +1457,8 @@ async function searchEmployee(text: string) {
flex-grow: 1;
}
.blue-segment,
.orange-segment,
.yellow-segment,
.gray-segment {
transform: skewX(-60deg);
}