Skip to content

Commit

Permalink
feat: lot more things
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Dec 19, 2023
1 parent b85e2c8 commit 66b39c4
Show file tree
Hide file tree
Showing 44 changed files with 576 additions and 1,043 deletions.
7 changes: 7 additions & 0 deletions assets/css/_mixins.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@mixin interactiveStyles {
&:enabled,
&[interactive="true"]:not([aria-disabled="true"]),
&:is(a, label):not([aria-disabled="true"]) {
@content;
}
}
12 changes: 1 addition & 11 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,9 @@ html.dark {
}
html,
body {
@apply min-h-full w-full bg-gray font-sans antialiased dark:bg-black dark:text-white;
@apply min-h-full text-neutral-950 w-full bg-neutral-50 font-sans antialiased dark:bg-black dark:text-white;
-webkit-text-size-adjust: 100%;

.link {
@apply font-medium text-primary-400 transition-colors dark:text-primary-200;
&:enabled,
&:is(a) {
&:not([aria-disabled="true"]) {
@apply hover:text-primary-300;
}
}
}

.tippy-box {
@apply rounded-lg text-sm;
&[data-theme~="light"] {
Expand Down
2 changes: 1 addition & 1 deletion components/address/AddressAvatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ defineProps({
@apply h-full w-full;
}
.address-avatar-icon {
@apply absolute -bottom-1 -right-1 aspect-square h-[60%] w-[60%] rounded-full bg-white bg-opacity-90 shadow backdrop-blur-sm;
@apply absolute -bottom-1 -right-1 aspect-square h-[60%] w-[60%] rounded-full bg-neutral-100 bg-opacity-90 shadow backdrop-blur-sm;
img,
svg {
Expand Down
23 changes: 0 additions & 23 deletions components/animations/ProgressBlocks.vue

This file was deleted.

6 changes: 3 additions & 3 deletions components/common/Alert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ defineProps({
}
&.variant- {
&info {
@apply border bg-primary-100 text-primary-700;
@apply dark:border-primary-200/50 dark:bg-primary-200/10 dark:text-white;
@apply border bg-primary-300 text-primary-700;
@apply dark:border-primary-300/50 dark:bg-primary-300/10 dark:text-white;
.alert-icon {
@apply dark:text-primary-300;
}
.alert-body {
.alert-link {
@apply hover:text-primary-600 dark:hover:text-primary-200;
@apply hover:text-primary-400 dark:hover:text-primary-300;
}
}
}
Expand Down
Loading

0 comments on commit 66b39c4

Please sign in to comment.