Skip to content

Commit 17a4e96

Browse files
fix sass resolution
1 parent 9f7c670 commit 17a4e96

6 files changed

Lines changed: 6 additions & 8 deletions

File tree

.storybook/decorators/theme.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export const themeDecorators: DecoratorFunction<ReactRenderer>[] = [
3333
<ThemeContext.Provider
3434
value={{
3535
theme: selected,
36+
// TODO: consider using storybook/addon-actions instead
3637
setTheme: theme => updateGlobals({ theme })
3738
}}
3839
>

components/pages/about/sections/Skills/Proficiency/Proficiency.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@use 'styles/utils';
1+
@use '/styles/utils';
22

33
.proficiency {
44
@apply block rounded-full border px-2 py-0.5 text-xs first-letter:uppercase;

components/pages/posts/[slug]/Content/Code/Code.module.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
@use 'styles/utils';
2-
3-
@import './syntaxTokens.module';
1+
@use '/styles/utils';
2+
@use './syntaxTokens.module';
43

54
@mixin code-block-wrapper {
65
:global(.highlight):has(.code) {

components/pages/posts/[slug]/Content/Code/syntaxTokens.module.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '/styles/utils';
2+
13
/* stylelint-disable no-descending-specificity */
24
.code :global {
35
/* This is a theme distributed by `starry-night`.

components/pages/posts/[slug]/Content/Content.module.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@use 'styles/utils';
2-
31
.content {
42
ul,
53
ol {

styles/global.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
@use 'styles/utils';
2-
31
@tailwind base;
42
@tailwind components;
53
@tailwind utilities;

0 commit comments

Comments
 (0)