Adding border radius to tag label.

This commit is contained in:
David Jay
2017-02-23 15:19:38 -05:00
parent da732ece14
commit d73a6a87a4
2 changed files with 13 additions and 3 deletions
@@ -171,6 +171,18 @@ hr {
float: right;
}
/* Tag Labels */
.coral-plugin-tag-label {
background-color: #4C1066;
color: white;
display: inline-block;
margin: 10px 10px;
padding: 5px 5px;
border-radius: 2px;
}
/* Reply styles */
+1 -3
View File
@@ -1,8 +1,6 @@
import React from 'react';
import styles from './styles.css';
const TagLabel = ({isStaff}) => <div className={`${styles.staff}`}>
const TagLabel = ({isStaff}) => <div className='coral-plugin-tag-label'>
{isStaff ? 'Staff' : ''}
</div>;