- Notifications
You must be signed in to change notification settings - Fork927
chore: use emotion for styling (pt. 8)#10447
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
23 commits Select commitHold shift + click to select a range
b1a8951
emotion: `Sidebar`
aslilac44ff69b
emotion: `CliAuthPageView`
aslilaca87148e
emotion: `AppearanceSettingsPageView`
aslilac42f5b5d
emotion: `NotFoundPage`
aslilac7f3cff2
emotion: `VariableInput`
aslilacaff4560
🧹
aslilac1c519da
emotion: `GroupPage`
aslilacf1cd22e
emotion: `ChartSection`
aslilacc04d181
emotion: `DividerWithText`
aslilacb58f25e
emotion: `HealthPage`
aslilacb94ec5d
emotion: `ExternalAuthPageView`
aslilac641ede7
emotion: `TemplateDocsPage`
aslilacf06631b
emotion: `AuditLogDiff`
aslilac2958685
emotion: `SignInForm`
aslilac9eec598
emotion: `LicenseCard`
aslilac0cbd32b
emotion: `AuditLogRow`
aslilac3cd4cc3
emotion: `ExternalAuthSettingsPageView`
aslilaca872acd
emotion: `AddNewLicensePageView`
aslilacf17fdb1
emotion: `OAuthSignInForm`
aslilacb3accde
emotion: `LoginPageView`
aslilacd84bf88
emotion: `Logs`
aslilac14dcfc8
Merge branch 'main' into emotional-damage-8
aslilac36af836
🧹
aslilacFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
54 changes: 21 additions & 33 deletionssite/src/components/Stats/Stats.tsx
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
66 changes: 28 additions & 38 deletionssite/src/components/WorkspaceBuildLogs/Logs.tsx
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
40 changes: 18 additions & 22 deletionssite/src/pages/404Page/404Page.tsx
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,34 +1,30 @@ | ||
import Typography from "@mui/material/Typography"; | ||
import {typeFC } from "react"; | ||
export const NotFoundPage: FC = () => { | ||
return ( | ||
<div | ||
css={{ | ||
width: "100%", | ||
height: "100%", | ||
display: "flex", | ||
flexDirection: "row", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
}} | ||
> | ||
<div | ||
css={(theme) => ({ | ||
margin: theme.spacing(1), | ||
padding: theme.spacing(1), | ||
borderRight: theme.palette.divider, | ||
})} | ||
> | ||
<Typography variant="h4">404</Typography> | ||
</div> | ||
<Typography variant="body2">This page could not be found.</Typography> | ||
</div> | ||
); | ||
}; | ||
export default NotFoundPage; |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
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.