Procházet zdrojové kódy

Add padding to recipe viewer

Tatiana Inama před 6 roky
rodič
revize
4ca3f3404c

+ 2 - 0
recipes/src/containers/Recipes/View/index.tsx

@@ -5,6 +5,8 @@ import { RouteComponentProps } from 'react-router';
 import RecipeCard from 'components/RecipeCard';
 import Recipe, { _recipe } from 'types/recipes';
 
+import './styles.scss';
+
 interface ViewRecipeProps extends RouteComponentProps<{id: string}>{
 
 }

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

@@ -0,0 +1,5 @@
+@import 'styles/_variables.scss';
+
+.cbk-recipe-viewer {
+  padding: $spacing-regular;
+}