소스 검색

Update blade views

Daniel Supernault 5 년 전
부모
커밋
955c53ca44
3개의 변경된 파일32개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      resources/views/collection/show.blade.php
  2. 11 0
      resources/views/profile/show.blade.php
  3. 10 0
      resources/views/status/show.blade.php

+ 11 - 0
resources/views/collection/show.blade.php

@@ -15,6 +15,17 @@
 
 @endsection
 
+@push('styles')
+<style type="text/css">
+  body {
+    background: #fff !important;
+  }
+  .navbar {
+    border: none !important;
+  }
+</style>
+@endpush
+
 @push('scripts')
 <script type="text/javascript" src="{{mix('js/compose.js')}}" async></script>
 	<script type="text/javascript" src="{{mix('js/collections.js')}}"></script>

+ 11 - 0
resources/views/profile/show.blade.php

@@ -22,6 +22,17 @@
   @endif
 @endpush
 
+@push('styles')
+<style type="text/css">
+  body {
+    background: #fff !important;
+  }
+  .navbar {
+    border: none !important;
+  }
+</style>
+@endpush
+
 @push('scripts')
 <script type="text/javascript" src="{{ mix('js/profile.js') }}"></script>
 <script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>

+ 10 - 0
resources/views/status/show.blade.php

@@ -24,6 +24,16 @@
         <meta property="og:video" content="{{$status->mediaUrl()}}">
     @endif
 @endpush
+@push('styles')
+<style type="text/css">
+  body {
+    background: #fff !important;
+  }
+  .navbar {
+    border: none !important;
+  }
+</style>
+@endpush
 
 @push('scripts')
 <script type="text/javascript" src="{{ mix('js/status.js') }}"></script>