From 7f8351e044879749fad083e028a2f93ae89ad3ef Mon Sep 17 00:00:00 2001 From: Nilesh Deepak Date: Thu, 13 Jul 2017 15:20:53 +0530 Subject: [PATCH] Removed avatar class from form.blade.php --- resources/assets/sass/styles.scss | 13 +++++++------ resources/views/books/form.blade.php | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/resources/assets/sass/styles.scss b/resources/assets/sass/styles.scss index 6eb24b8c1..e95e571b5 100644 --- a/resources/assets/sass/styles.scss +++ b/resources/assets/sass/styles.scss @@ -63,11 +63,6 @@ body.dragging, body.dragging * { &.square { border-radius: 3px; } - &.cover { - height: 192px; - width: 120px; - border-radius: 3px; - } } // System wide notifications @@ -306,4 +301,10 @@ $btt-size: 40px; img { border-radius: 3px; } -} \ No newline at end of file +} + +.cover { + height: 192px; + width: 120px; + border-radius: 3px; + } \ No newline at end of file diff --git a/resources/views/books/form.blade.php b/resources/views/books/form.blade.php index 34f5fd842..e26edac4b 100644 --- a/resources/views/books/form.blade.php +++ b/resources/views/books/form.blade.php @@ -21,7 +21,7 @@ 'currentImage' => @isset($model) ? $model->getBookCover(80) : baseUrl('/default.png') , 'currentId' => @isset($model) ? $model->image : 0, 'name' => 'image', - 'imageClass' => 'avatar cover' + 'imageClass' => 'cover' ])