-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
18 changed files
with
146 additions
and
135 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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
# EdgeDB UI | ||
# Gel UI | ||
|
||
This monorepo is the home of EdgeDB UI and all related UI components | ||
that it shares with the EdgeDB website and cloud. | ||
This monorepo is the home of Gel UI and all related UI components | ||
that it shares with the Gel website and cloud. | ||
|
||
If you are just looking to use EdgeDB UI: it already comes bundled with | ||
the EdgeDB server, and opening it is as simple as running the command | ||
`edgedb ui` from your project directory. | ||
If you are just looking to use Gel UI: it already comes bundled with | ||
the Gel server, and opening it is as simple as running the command | ||
`gel ui` from your project directory. | ||
|
||
## Contributing | ||
|
||
This repo is organised using yarn workspaces as follows: | ||
|
||
- `/web`: This is the main workspace of EdgeDB UI that is bundled with the | ||
EdgeDB server. Refer to <./web/readme.md> for instructions on how to build | ||
and develop EdgeDB UI. | ||
- `/web`: This is the main workspace of Gel UI that is bundled with the | ||
Gel server. Refer to <./web/readme.md> for instructions on how to build | ||
and develop Gel UI. | ||
|
||
- `/shared`: This directory contains all the shared components used by EdgeDB | ||
- `/shared`: This directory contains all the shared components used by Gel | ||
UI and across the website and cloud. Each subdirectory is it's own | ||
workspace; the most notable being `studio`, which contains the REPL, schema | ||
viewer and data viewer/editor components. |
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,25 @@ | ||
@import "@edgedb/common/mixins.scss"; | ||
|
||
.cloudLogo { | ||
@include isMobile { | ||
width: 37px; | ||
} | ||
} | ||
.gel { | ||
fill: var(--Grey30); | ||
@include darkTheme { | ||
fill: var(--Grey65); | ||
} | ||
} | ||
.cloud { | ||
fill: var(--Grey65); | ||
@include darkTheme { | ||
fill: var(--Grey40); | ||
} | ||
} | ||
.beta { | ||
fill: #08b985; | ||
@include darkTheme { | ||
fill: #358b6c; | ||
} | ||
} |
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
Oops, something went wrong.