change(ui) - webhooks font size and styles

This commit is contained in:
Shekar Siri 2022-08-24 17:20:07 +02:00
parent 8f8556fc45
commit 239c1bef42
2 changed files with 1 additions and 4 deletions

View file

@ -1,6 +1,4 @@
import React from 'react';
import { Icon } from 'UI';
import styles from './listItem.module.css';
import { Button } from 'UI';
const ListItem = ({ webhook, onEdit, onDelete }) => {
@ -8,7 +6,7 @@ const ListItem = ({ webhook, onEdit, onDelete }) => {
<div className="border-t group hover:bg-active-blue flex items-center justify-between py-3 px-5 cursor-pointer" onClick={onEdit}>
<div>
<span>{webhook.name}</span>
<div className={styles.endpoint}>{webhook.endpoint}</div>
<div className="color-gray-medium">{webhook.endpoint}</div>
</div>
<div className="invisible group-hover:visible">
<Button variant="text-primary" icon="pencil" />

View file

@ -46,7 +46,6 @@
}
.endpoint {
font-weight: 300;
font-size: 12px;
color: $gray-medium;
margin-top: 5px;