Skip to content

Commit cd4c59a

Browse files
Merge pull request #17 from themesberg/develop
Merge develop into master
2 parents cf36ff4 + 37c3d7c commit cd4c59a

24 files changed

+29
-4
lines changed

public/documentation/getting-started/build-tools/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,12 @@ <h1 class="bd-title" id="content">Build tools </h1>
470470

471471

472472

473+
<h2>Compiling SCSS files with Laravel Mix</h2>
474+
<p>If you want to make changes to the scss files located in <code>resources/scss/</code> you need to have <code>Laravel Mix</code> installed and then add the following line of code to the <code>webpack.mix.js</code> file in the "scripts" section. </p>
475+
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">"scss": "node-sass resources/scss -o css"</code></pre></div>
476+
<p>You can then run the following two commands in your project terminal in order to compile all of the scss files into one css file which you can then use to apply the styling changes to your project.</p>
477+
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">npm install node-sass</code></pre></div>
478+
<div class="highlight mt-5"><pre ><code class="language-bash" data-lang="bash">npm run scss</code></pre></div>
473479
<h2 id="starting-a-local-server">Starting a local server</h2>
474480
<p>Developing with Volt is very easy. All you have to do to run a local server is writing the following command in the folder where <code>gulpfile.js</code> is located:</p>
475481
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">gulp</code></pre></div>

resources/views/404.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>404</title>
12
<section class="vh-100 d-flex align-items-center justify-content-center">
23
<div class="container">
34
<div class="row">

resources/views/500.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>500</title>
12
<section class="vh-100 d-flex align-items-center justify-content-center">
23
<div class="container">
34
<div class="row align-items-center ">

resources/views/bootstrap-tables.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>Volt Laravel Dashboard - Bootstrap tables</title>
12
<div class="py-4">
23
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
34
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">

resources/views/components/buttons.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>Volt Laravel Dashboard - Buttons</title>
12
<div class="py-4">
23
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
34
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">

resources/views/components/forms.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>Volt Laravel Dashboard - Forms</title>
12
<div class="py-4">
23
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
34
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">

resources/views/components/modals.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>Volt Laravel Dashboard - Modals</title>
12
<div class="py-4">
23
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
34
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">

resources/views/components/notifications.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>Volt Laravel Dashboard - Notifications</title>
12
<div class="py-4">
23
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
34
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">

resources/views/components/typography.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>Volt Laravel Dashboard - Typography</title>
12
<div class="py-4">
23
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
34
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">

resources/views/dashboard.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<title>Volt Laravel Dashboard</title>
12
<div class="py-4">
23
<div class="dropdown">
34
<button class="btn btn-gray-800 d-inline-flex align-items-center me-2 dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">

0 commit comments

Comments
 (0)