Skip to content
Snippets Groups Projects
Commit 1ab0b05e authored by KDSBrowne's avatar KDSBrowne
Browse files

rename css class

parent d6370a88
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ export default class MuteAudio extends React.Component {
let tabIndex = !isInAudio ? -1 : 0;
if(isInAudio && isTalking){
className = styles.isTalking;
className = styles.circleGlow;
}
return (
......
......@@ -31,6 +31,6 @@
visibility: hidden;
}
.isTalking span i{
.circleGlow span i{
text-shadow: 0 0 .35rem #FFF;
}
......@@ -103,7 +103,7 @@ export default class Button extends BaseButton {
} = this.props;
let propClassNames = {};
let circleType = (glow) ? styles.isTalking : styles.circle;
let circleType = (glow) ? styles.circleGlow : styles.circle;
propClassNames[styles.button] = true;
propClassNames[styles[size]] = true;
......
......@@ -259,11 +259,11 @@ $btn-jumbo-padding: $jumbo-padding-y $jumbo-padding-x;
}
}
.isTalking {
.circleGlow {
box-shadow: 0 0 .15rem #FFF;
}
.circle, .isTalking {
.circle, .circleGlow {
$btn-sm-padding-x: nth($btn-sm-padding, 2) / 2.75;
$btn-md-padding-x: nth($btn-md-padding, 2) / 2.75;
$btn-lg-padding-x: nth($btn-lg-padding, 2) / 2.75;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment