diff --git a/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss b/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss
index d9d863df26..63b7cadc87 100644
--- a/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss
+++ b/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/styles.scss
@@ -3,6 +3,7 @@
$controls-color: $color-gray !default;
$controls-background: $color-white !default;
+$toolbar-button-border-radius: 5px;
.presentationToolbarWrapper,
.zoomWrapper {
@@ -16,6 +17,7 @@ $controls-background: $color-white !default;
position: absolute;
bottom: .8rem;
box-shadow: 0 0 10px -2px rgba(0, 0, 0, .25);
+ border-radius: $toolbar-button-border-radius;
align-self: center;
justify-content: center;
z-index: 1;
diff --git a/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss b/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss
index 2878fd57bc..60d9d7fbd1 100644
--- a/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss
+++ b/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/styles.scss
@@ -34,6 +34,7 @@ $toolbar-list-color: $color-gray;
align-items: center;
justify-content: center;
box-shadow: $toolbar-box-shadow;
+ border-radius: $toolbar-button-border-radius;
pointer-events: all;
.buttonWrapper > .toolbarButton {