mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-13 12:34:16 +00:00
69 lines
1.1 KiB
Plaintext
Executable File
69 lines
1.1 KiB
Plaintext
Executable File
.scheduled_progress {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
|
|
.point {
|
|
height: 40px;
|
|
text-align: center;
|
|
align-items: end;
|
|
white-space: nowrap;
|
|
display: flex;
|
|
width: 72px;
|
|
justify-content: center;
|
|
|
|
&.right {
|
|
transform: translate(-50%, 0);
|
|
}
|
|
|
|
&.left {
|
|
transform: translate(50%, 0);
|
|
}
|
|
|
|
&.reached {
|
|
color: rgba(0, 0, 0, 0.45);
|
|
}
|
|
}
|
|
|
|
.ant-progress::before {
|
|
content: "";
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 24px;
|
|
transform: translateX(-10px);
|
|
background-color: rgb(128, 128, 128);
|
|
}
|
|
|
|
.ant-progress::after {
|
|
content: "";
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 24px;
|
|
transform: translateX(10px);
|
|
background-color: rgb(128, 128, 128);
|
|
}
|
|
|
|
.ant-progress {
|
|
font-size: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
height: fit-content;
|
|
|
|
&.startReached {
|
|
&::before {
|
|
background-color: var(--colorPrimary) !important;
|
|
}
|
|
}
|
|
|
|
&.finishReached {
|
|
&::after {
|
|
background-color: var(--colorPrimary) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ant-progress-bg {
|
|
background-color: var(--colorPrimary);
|
|
}
|
|
}
|