Skip to content

Commit

Permalink
Minor tweaks to Tag component (#1866)
Browse files Browse the repository at this point in the history
# What this PR does

Minor UI Tweaks after releasing the grouping&templating changes
  • Loading branch information
teodosii authored May 4, 2023
1 parent 0a02b21 commit 02712e9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion grafana-plugin/src/components/Tag/Tag.module.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.root {
border-radius: 2px;
line-height: 100%;
padding: 4px 7px;
padding: 5px 8px;
color: white;
}
2 changes: 1 addition & 1 deletion grafana-plugin/src/pages/incident/Incident.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@

.status-tag {
height: 24px;
padding: 0 8px;
padding: 5px 8px;
border-radius: 2px;
}
.paged-users {
Expand Down
2 changes: 1 addition & 1 deletion grafana-plugin/src/pages/incident/Incident.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class IncidentPage extends React.Component<IncidentPageProps, IncidentPageState>
const integrationNameWithEmojies = <Emoji text={incident.alert_receive_channel.verbal_name} />;

return (
<Block withBackground className={cx('block')}>
<Block className={cx('block')}>
<VerticalGroup>
<HorizontalGroup justify="space-between">
<HorizontalGroup className={cx('title')}>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.incident__tag {
padding: 3px 12px;
padding: 5px 8px;
display: inline-flex;
align-items: center;
cursor: pointer;
Expand Down

0 comments on commit 02712e9

Please sign in to comment.