Skip to content

Commit

Permalink
Merge pull request #17 from themesberg/develop
Browse files Browse the repository at this point in the history
Merge develop into master
  • Loading branch information
teamupdivision authored Apr 1, 2022
2 parents cf36ff4 + 37c3d7c commit cd4c59a
Show file tree
Hide file tree
Showing 24 changed files with 29 additions and 4 deletions.
6 changes: 6 additions & 0 deletions public/documentation/getting-started/build-tools/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,12 @@ <h1 class="bd-title" id="content">Build tools </h1>



<h2>Compiling SCSS files with Laravel Mix</h2>
<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>
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">"scss": "node-sass resources/scss -o css"</code></pre></div>
<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>
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">npm install node-sass</code></pre></div>
<div class="highlight mt-5"><pre ><code class="language-bash" data-lang="bash">npm run scss</code></pre></div>
<h2 id="starting-a-local-server">Starting a local server</h2>
<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>
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">gulp</code></pre></div>
Expand Down
1 change: 1 addition & 0 deletions resources/views/404.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>404</title>
<section class="vh-100 d-flex align-items-center justify-content-center">
<div class="container">
<div class="row">
Expand Down
1 change: 1 addition & 0 deletions resources/views/500.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>500</title>
<section class="vh-100 d-flex align-items-center justify-content-center">
<div class="container">
<div class="row align-items-center ">
Expand Down
1 change: 1 addition & 0 deletions resources/views/bootstrap-tables.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Bootstrap tables</title>
<div class="py-4">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
Expand Down
1 change: 1 addition & 0 deletions resources/views/components/buttons.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Buttons</title>
<div class="py-4">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
Expand Down
1 change: 1 addition & 0 deletions resources/views/components/forms.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Forms</title>
<div class="py-4">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
Expand Down
1 change: 1 addition & 0 deletions resources/views/components/modals.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Modals</title>
<div class="py-4">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
Expand Down
1 change: 1 addition & 0 deletions resources/views/components/notifications.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Notifications</title>
<div class="py-4">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
Expand Down
1 change: 1 addition & 0 deletions resources/views/components/typography.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Typography</title>
<div class="py-4">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
Expand Down
1 change: 1 addition & 0 deletions resources/views/dashboard.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard</title>
<div class="py-4">
<div class="dropdown">
<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">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/auth/login.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<main>

<title>Volt Laravel Dashboard - Sign In page</title>
<!-- Section -->
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/auth/register.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<main>

<title>Volt Laravel Dashboard - Sign Up page</title>
<!-- Section -->
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/forgot-password-example.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<main>
<title>Volt Laravel Dashboard - Forgot password</title>
<!-- Section -->
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/forgot-password.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<main>

<title>Volt Laravel Dashboard - Forgot password</title>
<!-- Section -->
<section class="vh-lg-100 mt-4 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/login-example.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<main>
<title>Volt Laravel Dashboard - Sign In page</title>
<!-- Section -->
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/profile-example.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Profile</title>
<div>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
<div>
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/profile.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Profile</title>
<div>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
<div>
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/register-example.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<main>
<title>Volt Laravel Dashboard - Sign up page</title>
<!-- Section -->
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/reset-password.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<main>

<title>Volt Laravel Dashboard - Reset Password</title>
<!-- Section -->
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/upgrade-to-pro.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Upgrade to Pro</title>
<div class="row justify-content-center pt-5 pb-4">
<div class="col-12 col-xl-9 text-center">
<h1 class="fw-extrabold text-center d-inline-flex align-items-center mb-4">
Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/users.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - User management</title>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
<div class="d-block mb-4 mb-md-0">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
Expand Down
1 change: 1 addition & 0 deletions resources/views/lock.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Lock</title>
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
<a href="/dashboard" class="d-flex align-items-center justify-content-center mb-4">
Expand Down
1 change: 1 addition & 0 deletions resources/views/reset-password-example.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<main>
<title>Volt Laravel Dashboard - Reset password</title>
<!-- Section -->
<section class="vh-lg-100 mt-5 mt-lg-0 bg-soft d-flex align-items-center">
<div class="container">
Expand Down
1 change: 1 addition & 0 deletions resources/views/transactions.blade.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<title>Volt Laravel Dashboard - Transactions</title>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
<div class="d-block mb-4 mb-md-0">
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
Expand Down

0 comments on commit cd4c59a

Please sign in to comment.