diff --git a/resources/assets/stylesheets/less/buttons.less b/resources/assets/stylesheets/less/buttons.less
index 688682e600eacdc9d838b17f37477065bf2e58ad..cf00969810514f67488bc61e2eda51b0485cb5ee 100644
--- a/resources/assets/stylesheets/less/buttons.less
+++ b/resources/assets/stylesheets/less/buttons.less
@@ -128,10 +128,15 @@ a.button, button.button {
     padding: 0;
     vertical-align: middle;
 
-    button, .button {
+    button,
+    .button {
         float: left;
         margin-left: 5px;
         margin-right: 0;
+
+        &:first-of-type {
+            margin-left: 0;
+        }
     }
 }
 
diff --git a/resources/assets/stylesheets/scss/buttons.scss b/resources/assets/stylesheets/scss/buttons.scss
index 8b5b24d62f5eebb3ddaf522e6211a28f79e2c5e3..57da8373ecf6be01a8e4f8c285cd574bc5321af3 100644
--- a/resources/assets/stylesheets/scss/buttons.scss
+++ b/resources/assets/stylesheets/scss/buttons.scss
@@ -133,6 +133,10 @@ button.button {
         float: left;
         margin-left: 5px;
         margin-right: 0;
+
+        &:first-of-type {
+            margin-left: 0;
+        }
     }
 }