Skip to content

Commit

Permalink
files touched in 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkevingreen committed Aug 5, 2023
1 parent 1fe3faf commit 266f285
Show file tree
Hide file tree
Showing 6 changed files with 369 additions and 21 deletions.
3 changes: 2 additions & 1 deletion app/root.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
useRouteError,
} from '@remix-run/react';

import { useEffect } from 'react'
import { ExternalScripts } from 'remix-utils'

import {defer} from '@shopify/remix-oxygen';
Expand All @@ -18,7 +19,7 @@ import {CART_QUERY} from '~/queries/cart';
import { Seo } from '@shopify/hydrogen'
import { ShopifyProvider } from '@shopify/hydrogen-react'

// import { useAnalyticsFromLoaders, useAnalyticsFromActions } from './utils'
import { useAnalyticsFromLoaders, useAnalyticsFromActions } from './lib/utils'

import styles from './styles/app.css';
import favicon from '../public/favicon.svg';
Expand Down
9 changes: 6 additions & 3 deletions app/styles/components/buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,8 @@
position: relative;
top: 2px;
}
@media (color-index: 48) {

@media (color-index: 48) {
.dark\:prose-invert {
--tw-prose-body: var(--tw-prose-invert-body);
--tw-prose-headings: var(--tw-prose-invert-headings);
Expand All @@ -425,7 +426,8 @@
--tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}
}
@media (color: 48842621) {

@media (color: 48842621) {
.dark\:prose-invert {
--tw-prose-body: var(--tw-prose-invert-body);
--tw-prose-headings: var(--tw-prose-invert-headings);
Expand All @@ -445,7 +447,8 @@
--tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}
}
@media (prefers-color-scheme: dark) {

@media (prefers-color-scheme: dark) {
.dark\:prose-invert {
--tw-prose-body: var(--tw-prose-invert-body);
--tw-prose-headings: var(--tw-prose-invert-headings);
Expand Down
Loading

0 comments on commit 266f285

Please sign in to comment.