package list from viandwi24
This commit is contained in:
BIN
assets/images/preview.gif
Normal file
BIN
assets/images/preview.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.1 MiB |
BIN
assets/images/preview_mobile.gif
Normal file
BIN
assets/images/preview_mobile.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 MiB |
BIN
assets/images/preview_new.png
Normal file
BIN
assets/images/preview_new.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 543 KiB |
BIN
assets/images/preview_v2.png
Normal file
BIN
assets/images/preview_v2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 498 KiB |
1
assets/sass/_variables.scss
Normal file
1
assets/sass/_variables.scss
Normal file
@@ -0,0 +1 @@
|
||||
$padding: 0.05em;
|
||||
25
assets/sass/animations/_transitions.scss
Normal file
25
assets/sass/animations/_transitions.scss
Normal 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
38
assets/sass/app.scss
Normal 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
0
assets/sass/vendor.scss
Normal file
Reference in New Issue
Block a user