feat: update create new project dialog

This commit is contained in:
Hamzat Victor
2024-10-13 23:34:27 +01:00
parent 08fccdd506
commit eabc9fa2f6
4 changed files with 260 additions and 24 deletions

View File

@ -152,3 +152,24 @@
.tab-scroll::-webkit-scrollbar {
display: none;
}
.fade-r {
--mask-gradient: linear-gradient(
to right,
white 0%,
white calc(100% - var(--fade-size)),
transparent
);
-webkit-mask-image: var(--mask-gradient);
mask-image: var(--mask-gradient);
}
.fade-l {
--mask-gradient: linear-gradient(
to left,
white var(--fade-size),
white 100%,
transparent
);
-webkit-mask-image: var(--mask-gradient);
mask-image: var(--mask-gradient);
}