forked from SigNoz/signoz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: polished the log UI (SigNoz#3591)
- Loading branch information
Showing
2 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
frontend/src/container/LogDetailedView/FieldRenderer.styles.ts
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,20 @@ | ||
import { Tag } from 'antd'; | ||
import styled from 'styled-components'; | ||
|
||
export const TagContainer = styled(Tag)` | ||
&&& { | ||
border-radius: 0.25rem; | ||
padding: 0.063rem 0.5rem; | ||
font-weight: 600; | ||
font-size: 0.75rem; | ||
line-height: 1.25rem; | ||
} | ||
`; | ||
|
||
export const TagLabel = styled.span` | ||
font-weight: 400; | ||
`; | ||
|
||
export const TagValue = styled.span` | ||
text-transform: capitalize; | ||
`; |
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