-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a7e9dd0
commit 1b6bb03
Showing
7 changed files
with
76 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"scss.lint.unknownAtRules": "ignore", | ||
"css.lint.unknownAtRules": "ignore" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
@use "partials"; | ||
|
||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
svg.lucide { | ||
pointer-events: none; | ||
} | ||
|
||
body { | ||
--avatar-size: 8rem; | ||
} | ||
|
||
@media (min-width: 1024px) { | ||
body { | ||
--avatar-size: 11rem; | ||
} | ||
} | ||
|
||
@layer components { | ||
.desktop-only-lg { | ||
@apply hidden lg:block; | ||
} | ||
|
||
.desktop-only-md { | ||
@apply hidden md:block; | ||
} | ||
|
||
.mobile-only-lg { | ||
@apply block lg:hidden; | ||
} | ||
|
||
.mobile-only-md { | ||
@apply block md:hidden; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@forward "mixins"; | ||
@forward "overrides"; | ||
@forward "themes"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@mixin theme-variable-sets($theme) { | ||
.theme-#{$theme} { | ||
@content; | ||
} | ||
.theme-system { | ||
@media (prefers-color-scheme: $theme) { | ||
@content; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@use "mixins" as *; | ||
|
||
@include theme-variable-sets(light) { | ||
--bui-context-menu: theme("colors.100"); | ||
} | ||
|
||
@include theme-variable-sets(dark) { | ||
--bui-context-menu: theme("colors.200"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters