From b6b33219a89f2a45f910dcbc6e9566d6ba130eef Mon Sep 17 00:00:00 2001 From: Robert Long Date: Mon, 23 Aug 2021 12:37:10 -0700 Subject: [PATCH] Fix button pointer style --- src/RoomButton.module.css | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/RoomButton.module.css b/src/RoomButton.module.css index 88740e3..e462c60 100644 --- a/src/RoomButton.module.css +++ b/src/RoomButton.module.css @@ -14,16 +14,21 @@ See the License for the specific language governing permissions and limitations under the License. */ +.roomButton, .headerButton { + display: flex; + justify-content: center; + align-items: center; + background-color: transparent; + padding: 0; + border: none; + cursor: pointer; +} + .roomButton { width: 50px; height: 50px; border-radius: 50px; background-color: rgba(111, 120, 130, 0.3); - display: flex; - justify-content: center; - align-items: center; - padding: 0; - border: none; } .roomButton:hover { @@ -41,13 +46,7 @@ limitations under the License. .headerButton { width: 32px; height: 32px; - display: flex; - justify-content: center; - align-items: center; - background-color: transparent; border-radius: 32px; - padding: 0; - border: none; } .headerButton:hover {