From b259757c79540f8989da4d3aa403e02bb376f3ce Mon Sep 17 00:00:00 2001 From: Robert Pintilii Date: Mon, 18 Jul 2022 11:40:16 +0300 Subject: [PATCH] fix(lobby) Fix buttons colors (#11867) --- .../base/premeeting/components/web/ActionButton.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/react/features/base/premeeting/components/web/ActionButton.js b/react/features/base/premeeting/components/web/ActionButton.js index f2ade7edf..a8974a33c 100644 --- a/react/features/base/premeeting/components/web/ActionButton.js +++ b/react/features/base/premeeting/components/web/ActionButton.js @@ -107,10 +107,11 @@ const styles = theme => { position: 'relative', textAlign: 'center', width: '100%', + border: 0, '&.primary': { background: theme.palette.action01, - border: '1px solid #0376DA', + color: theme.palette.text01, '&:hover': { backgroundColor: theme.palette.action01Hover @@ -119,7 +120,11 @@ const styles = theme => { '&.secondary': { background: theme.palette.action02, - border: '1px solid transparent' + color: theme.palette.text04, + + '&:hover': { + backgroundColor: theme.palette.action02Hover + } }, '&.text': {