parsley/app/assets/stylesheets/recipes.scss

19 lines
369 B
SCSS
Raw Normal View History

2016-01-12 18:43:00 -06:00
// Place all the styles related to the recipes controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
2016-01-13 17:10:43 -06:00
@mixin editor {
2016-01-14 11:07:15 -06:00
@extend .panel-body;
2016-01-13 17:10:43 -06:00
}
div.ingredient-editor {
@include editor;
}
div.step-editor {
@include editor;
}
div#ingredient-list, div#step-list {
padding-bottom: 15px;
}