-
Notifications
You must be signed in to change notification settings - Fork 626
chore: moved visual button to ui #3306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 18 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
a5290fc
moved with eng docs
MichaelUnkey 2bdd0b3
Update apps/engineering/content/design/components/buttons/visual-butt…
MichaelUnkey e388110
Update apps/engineering/content/design/components/visual-button.mdx
MichaelUnkey 10d446d
Merge branch 'main' of https://github.com/unkeyed/unkey into visual-b…
MichaelUnkey fb84b7b
merge issue
MichaelUnkey 0d0178d
Merge branch 'main' of https://github.com/unkeyed/unkey into visual-b…
MichaelUnkey 0a4d79b
icons and eng style stuff
MichaelUnkey 94a4ffc
Merge branch 'main' of https://github.com/unkeyed/unkey into visual-b…
MichaelUnkey 91b3135
small changes
MichaelUnkey 2c45100
fix eng colors and modify component
MichaelUnkey ffdb927
Merge branch 'main' of https://github.com/unkeyed/unkey into visual-b…
MichaelUnkey 38b41fc
add packages for tailwind
MichaelUnkey ebd4caa
small improvements
MichaelUnkey c568296
Merge branch 'main' of https://github.com/unkeyed/unkey into visual-b…
MichaelUnkey 532e3fd
[autofix.ci] apply automated fixes
autofix-ci[bot] 983e49b
Merge branch 'main' of https://github.com/unkeyed/unkey into visual-b…
MichaelUnkey 9916466
minor changes to eng location and remove size
MichaelUnkey 36bf563
rabbit changes
MichaelUnkey c5c2937
rabbit again
MichaelUnkey 19c4e7e
fix lockfile
MichaelUnkey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,3 +1,130 @@ | ||
| @tailwind base; | ||
| @tailwind components; | ||
| @tailwind utilities; | ||
|
|
||
| @layer base { | ||
| :root { | ||
| --chart-selection: var(--accent-6); | ||
|
|
||
| --white: 0 0% 100%; | ||
| --black: 0 0% 0%; | ||
| --background: 60 9% 98%; | ||
| --background-subtle: 60 9% 94%; | ||
|
|
||
| --brand: 262 93% 58%; | ||
| --brand-foreground: 262 93% 90%; | ||
|
|
||
| --warn: 46, 97%, 65%; | ||
| --warn-foreground: 46, 97%, 15%; | ||
|
|
||
| --alert: 0 100% 65%; | ||
| --alert-foreground: 0 100% 98%; | ||
|
|
||
| --success: 152, 56%, 39%; | ||
|
|
||
| --primary: 24 10% 10%; | ||
| --primary-foreground: 24 10% 90%; | ||
|
|
||
| --secondary: 20 6% 94%; | ||
| --secondary-foreground: 0 0% 0%; | ||
|
|
||
| --content: 240 10% 3.9%; | ||
| --content-subtle: 240 3.8% 46.1%; | ||
|
|
||
| --content-warn: 46, 97%, 40%; | ||
| --content-alert: 0 84.2% 60.2%; | ||
|
|
||
| --border: 24, 6%, 83%; | ||
| --ring: 24, 6%, 83%; | ||
| } | ||
|
|
||
| .dark { | ||
| --chart-selection: var(--accent-9); | ||
|
|
||
| --white: 0 0% 100%; | ||
| --black: 0 0% 0%; | ||
|
|
||
| --background: 20 14% 2%; | ||
| --background-subtle: 24 10% 10%; | ||
|
|
||
| --brand: 25 95% 53%; | ||
| --brand-foreground: 25 95% 90%; | ||
|
|
||
| --warn: 46, 100%, 45%; | ||
| --warn-foreground: 46, 97%, 5%; | ||
|
|
||
| --alert: 0 100% 45%; | ||
| --alert-foreground: 0 100% 95%; | ||
|
|
||
| --success: 152, 56%, 39%; | ||
|
|
||
| --primary: 20 6% 94%; | ||
| --primary-foreground: 20 6% 10%; | ||
|
|
||
| --secondary: 24 10% 10%; | ||
| --secondary-foreground: 24 10% 100%; | ||
|
|
||
| --content: 240 10% 90%; | ||
| --content-subtle: 240 3.8% 46.1%; | ||
| --content-warn: 46, 100%, 55%; | ||
| --content-alert: 0 84.2% 60.2%; | ||
|
|
||
| --border: 12, 6%, 15%; | ||
| --ring: 12, 6%, 15%; | ||
| } | ||
| } | ||
|
|
||
| @layer base { | ||
| * { | ||
| @apply border-border; | ||
| } | ||
|
|
||
| html { | ||
| @apply scroll-smooth; | ||
| } | ||
|
|
||
| body { | ||
| @apply bg-background text-content; | ||
| } | ||
| } | ||
|
|
||
| code { | ||
| counter-reset: step; | ||
| counter-increment: step 0; | ||
| white-space: break-spaces; | ||
| } | ||
|
|
||
| code .line::before { | ||
| content: counter(step); | ||
| counter-increment: step; | ||
| width: 1rem; | ||
| margin-right: 1.5rem; | ||
| display: inline-block; | ||
| text-align: right; | ||
| color: rgba(115, 138, 148, 0.4); | ||
| } | ||
|
|
||
| @keyframes fillLeft { | ||
| from { | ||
| transform: translateX(-100%); | ||
| } | ||
|
|
||
| to { | ||
| transform: translateX(0); | ||
| } | ||
| } | ||
|
|
||
| /* For Webkit-based browsers (Chrome, Safari and Opera) */ | ||
| .scrollbar-hide::-webkit-scrollbar { | ||
| display: none; | ||
| } | ||
|
|
||
| /* For IE, Edge and Firefox */ | ||
| .scrollbar-hide { | ||
| -ms-overflow-style: none; | ||
| /* IE and Edge */ | ||
| scrollbar-width: none; | ||
| /* Firefox */ | ||
| } | ||
|
|
||
| .animate-fill-left { | ||
| animation: fillLeft 1s ease-in-out; | ||
| } |
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.