package list from viandwi24

This commit is contained in:
Kar
2023-04-28 09:58:09 +05:30
commit 4125135289
108 changed files with 27411 additions and 0 deletions

BIN
assets/images/preview.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 KiB

View File

@@ -0,0 +1 @@
$padding: 0.05em;

View File

@@ -0,0 +1,25 @@
// page transition
.page-enter-active {
transition: all 0.1s ease-out;
}
.page-leave-active {
transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}
.page-enter-from,
.page-leave-to {
transform: translateY(20px);
opacity: 0;
}
// layout transition
.layout-enter-active {
transition: all 0.1s ease-out;
}
.layout-leave-active {
transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}
.layout-enter-from,
.layout-leave-to {
transform: translateY(-20px);
opacity: 0;
}

38
assets/sass/app.scss Normal file
View File

@@ -0,0 +1,38 @@
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap");
// vars
@import 'variables';
// components
::-webkit-scrollbar {
width: 16px;
}
::-webkit-scrollbar-track {
background: theme('colors.gray.100');
border-left: 1px solid theme('colors.gray.200');
}
::-webkit-scrollbar-thumb {
border: 4px solid theme('colors.gray.100');
background-clip: padding-box;
border-radius: 9999px;
background-color: theme('colors.slate.300');
}
::-webkit-scrollbar-thumb:hover {
background-color: theme('colors.slate.400');
}
html.dark {
::-webkit-scrollbar-track {
background: theme('colors.slate.800');
border-left: 1px solid theme('colors.slate.700');
}
::-webkit-scrollbar-thumb {
border-color: theme('colors.slate.800');
background-color: theme('colors.slate.500');
}
::-webkit-scrollbar-thumb:hover {
background-color: theme('colors.slate.400');
}
}
// animations
@import 'animations/transitions';

0
assets/sass/vendor.scss Normal file
View File