Browse Source

Reduce recipe viewer's padding for small devices

Tatiana Inama 6 years ago
parent
commit
9601291167
1 changed files with 5 additions and 1 deletions
  1. 5 1
      recipes/src/containers/Recipes/View/styles.scss

+ 5 - 1
recipes/src/containers/Recipes/View/styles.scss

@@ -2,4 +2,8 @@
 
 .cbk-recipe-viewer {
   padding: $spacing-regular;
-}
+  
+  @media #{$small-device} {
+    padding: $spacing-regular $spacing-xs;
+  }
+}